File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -13522,16 +13522,19 @@ fn verify_mempool_caches() {
13522
13522
// Look for a block with expected height
13523
13523
let Some(block) = blocks
13524
13524
.iter()
13525
- .find(|block| block["block_height"].as_u64() == Some(block_height_before + 2)) else {
13526
- return Ok(false) // Keep waiting if the block hasn't been observed yet
13525
+ .find(|block| block["block_height"].as_u64() == Some(block_height_before + 2))
13526
+ else {
13527
+ return Ok(false); // Keep waiting if the block hasn't been observed yet
13527
13528
};
13528
13529
13529
13530
// This new block should have just the one new transfer
13530
13531
let transfers_included_in_block = transfers_in_block(block);
13531
13532
if transfers_included_in_block == 1 {
13532
13533
Ok(true)
13533
13534
} else {
13534
- Err(format!("Expected only one transfer in block, found {transfers_included_in_block}"))
13535
+ Err(format!(
13536
+ "Expected only one transfer in block, found {transfers_included_in_block}"
13537
+ ))
13535
13538
}
13536
13539
})
13537
13540
.expect("Timed out waiting for block");
You can’t perform that action at this time.
0 commit comments