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 4e971b2 commit c7286c4Copy full SHA for c7286c4
testnet/stacks-node/src/tests/signer/v0.rs
@@ -3100,11 +3100,14 @@ fn tenure_extend_with_other_transactions() {
3100
transactions.len() > 1,
3101
"Expected at least 2 transactions in the block"
3102
);
3103
- assert!(transactions.iter().any(|tx| {
3104
- let tx = tx.as_object().unwrap();
3105
- let txid = tx["txid"].as_str().unwrap();
3106
- txid[2..] == to_find
3107
- }), "Failed to find the transfer tx in the block");
+ assert!(
+ transactions.iter().any(|tx| {
+ let tx = tx.as_object().unwrap();
+ let txid = tx["txid"].as_str().unwrap();
+ txid[2..] == to_find
3108
+ }),
3109
+ "Failed to find the transfer tx in the block"
3110
+ );
3111
signer_test.shutdown();
3112
}
3113
0 commit comments