From ec4d69c7a030b82bfed939cb7ea1f95bc8a2537a Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Sat, 27 Jan 2024 12:03:59 -0700 Subject: [PATCH] Fix clippy lint --- zcash_keys/src/keys.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash_keys/src/keys.rs b/zcash_keys/src/keys.rs index 2d867ab10b..6c32b72b0a 100644 --- a/zcash_keys/src/keys.rs +++ b/zcash_keys/src/keys.rs @@ -182,7 +182,7 @@ impl UnifiedSpendingKey { #[cfg(feature = "orchard")] let orchard = - orchard::keys::SpendingKey::from_zip32_seed(seed, params.coin_type(), account.into()) + orchard::keys::SpendingKey::from_zip32_seed(seed, params.coin_type(), account) .map_err(DerivationError::Orchard)?; #[cfg(feature = "transparent-inputs")]