File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -13195,8 +13195,9 @@ fn interrupt_miner_on_new_stacks_tip() {
13195
13195
13196
13196
info!("------------------------- Block N is Announced -------------------------");
13197
13197
13198
- let proposals_before = proposed_blocks_rl2.load(Ordering::SeqCst );
13198
+ TEST_BROADCAST_PROPOSAL_STALL.set(true );
13199
13199
TEST_P2P_BROADCAST_STALL.set(false);
13200
+ let proposals_before = proposed_blocks_rl2.load(Ordering::SeqCst);
13200
13201
13201
13202
// Wait for RL2's tip to advance to the last block
13202
13203
wait_for(30, || {
@@ -13212,6 +13213,7 @@ fn interrupt_miner_on_new_stacks_tip() {
13212
13213
13213
13214
info!("Stop signers from ignoring proposals");
13214
13215
TEST_IGNORE_ALL_BLOCK_PROPOSALS.set(Vec::new());
13216
+ TEST_BROADCAST_PROPOSAL_STALL.set(false);
13215
13217
13216
13218
wait_for(30, || {
13217
13219
Ok(proposed_blocks_rl2.load(Ordering::SeqCst) > proposals_before)
You can’t perform that action at this time.
0 commit comments