From 9a017a1ae3752a9a2fa02a642f35185701d343db Mon Sep 17 00:00:00 2001 From: KaffinPX Date: Sat, 19 Oct 2024 23:14:37 +0300 Subject: [PATCH] Clippy fix --- wallet/pskt/src/wasm/pskt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/pskt/src/wasm/pskt.rs b/wallet/pskt/src/wasm/pskt.rs index 55a34569d..309d0c85c 100644 --- a/wallet/pskt/src/wasm/pskt.rs +++ b/wallet/pskt/src/wasm/pskt.rs @@ -340,7 +340,7 @@ impl PSKT { .iter() .map(|input| -> Vec { let required_sig_count = get_sig_op_count::( - &input.redeem_script.as_ref().unwrap(), // TODO: a question for aspect -- abt how to properly handle here + input.redeem_script.as_ref().unwrap(), // TODO: a question for aspect -- abt how to properly handle here &input.utxo_entry.as_ref().unwrap().script_public_key, );