Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
biryukovmaxim committed Sep 28, 2024
1 parent 3c4e029 commit 8b4d0be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallet/pskt/src/pskt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ impl PSKT<Extractor> {
let mut reused_values = SigHashReusedValues::new();

tx.populated_inputs().enumerate().try_for_each(|(idx, (input, entry))| {
TxScriptEngine::from_transaction_input(&tx, input, idx, entry, &mut reused_values, &cache)?.execute()?;
TxScriptEngine::from_transaction_input(&tx, input, idx, entry, &mut reused_values, &cache, false)?.execute()?;
<Result<(), ExtractError>>::Ok(())
})?;
}
Expand Down

0 comments on commit 8b4d0be

Please sign in to comment.