Skip to content

Commit 28e1be4

Browse files
committed
chore: fix failing integration test and unstage accidentally-added file
1 parent 62f5130 commit 28e1be4

File tree

2 files changed

+5
-164
lines changed

2 files changed

+5
-164
lines changed

stackslib/src/net/api/setloglevel.rs

Lines changed: 0 additions & 164 deletions
This file was deleted.

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3807,8 +3807,13 @@ fn follower_bootup_across_multiple_cycles() {
38073807
.reward_cycle_length
38083808
* 2
38093809
{
3810+
let commits_before = commits_submitted.load(Ordering::SeqCst);
38103811
next_block_and_process_new_stacks_block(&mut btc_regtest_controller, 60, &coord_channel)
38113812
.unwrap();
3813+
wait_for(20, || {
3814+
Ok(commits_submitted.load(Ordering::SeqCst) > commits_before)
3815+
})
3816+
.unwrap();
38123817
}
38133818

38143819
info!("Nakamoto miner has advanced two reward cycles");

0 commit comments

Comments
 (0)