We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a333bc commit 9060cc7Copy full SHA for 9060cc7
lightning/src/ln/functional_tests.rs
@@ -9721,9 +9721,9 @@ fn do_test_manual_broadcast_skips_commitment_until_funding(
9721
let htlc_tx = broadcasts
9722
.iter()
9723
.find(|tx| {
9724
- tx.input.iter().any(|input| {
9725
- input.previous_output.txid == commitment_tx.compute_txid()
9726
- })
+ tx.input
+ .iter()
+ .any(|input| input.previous_output.txid == commitment_tx.compute_txid())
9727
})
9728
.expect("HTLC claim transaction not broadcast");
9729
check_spends!(htlc_tx, commitment_tx);
0 commit comments