From 31f8e644837d643c1823a8adb82c08abae5bc36d Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Fri, 26 Jul 2024 08:55:16 -0600 Subject: [PATCH] Fix clippy lint. --- .../src/wallet/init/migrations/ephemeral_addresses.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash_client_sqlite/src/wallet/init/migrations/ephemeral_addresses.rs b/zcash_client_sqlite/src/wallet/init/migrations/ephemeral_addresses.rs index 067234792..02df28563 100644 --- a/zcash_client_sqlite/src/wallet/init/migrations/ephemeral_addresses.rs +++ b/zcash_client_sqlite/src/wallet/init/migrations/ephemeral_addresses.rs @@ -168,7 +168,7 @@ mod tests { // Initialize the `ephemeral_addresses` table. #[cfg(feature = "transparent-inputs")] - transparent::ephemeral::init_account(&mut wdb.conn.0, &wdb.params, account_id)?; + transparent::ephemeral::init_account(wdb.conn.0, &wdb.params, account_id)?; Ok((account_id, usk)) })