Skip to content

Commit aae44ab

Browse files
committed
chore: Address Brice's PR comments
1 parent e5ad64f commit aae44ab

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

testnet/stacks-node/src/tests/neon_integrations.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12408,10 +12408,9 @@ fn next_block_and_wait_all(
1240812408
let finished = follower_blocks_processed
1240912409
.iter()
1241012410
.zip(followers_current.iter())
12411-
.map(|(blocks_processed, start_count)| {
12411+
.all(|(blocks_processed, start_count)| {
1241212412
blocks_processed.load(Ordering::SeqCst) > *start_count
12413-
})
12414-
.all(|b| b);
12413+
});
1241512414

1241612415
if finished {
1241712416
break;
@@ -12702,7 +12701,7 @@ fn mock_miner_replay() {
1270212701

1270312702
thread::sleep(block_gap);
1270412703

12705-
// first block will hold our VRF registration
12704+
// second block will hold our VRF registration
1270612705
next_block_and_wait_all(
1270712706
&mut btc_regtest_controller,
1270812707
&miner_blocks_processed,

0 commit comments

Comments
 (0)