@@ -11714,7 +11714,7 @@ fn reorg_attempts_activity_timeout_exceeded() {
11714
11714
let block_proposal_n = wait_for_block_proposal().expect("Failed to get block proposal N");
11715
11715
let chain_after = get_chain_info(&signer_test.running_nodes.conf);
11716
11716
assert_eq!(chain_after, chain_before);
11717
- TEST_BROADCAST_STALL .set(true);
11717
+ TEST_BROADCAST_PROPOSAL_STALL .set(true);
11718
11718
11719
11719
info!("------------------------- Start Tenure B -------------------------");
11720
11720
let commits_before = signer_test
@@ -11752,15 +11752,15 @@ fn reorg_attempts_activity_timeout_exceeded() {
11752
11752
// Make sure to wait the reorg_attempts_activity_timeout AFTER the block is globally signed over
11753
11753
// as this is the point where signers start considering from.
11754
11754
std::thread::sleep(reorg_attempts_activity_timeout.add(Duration::from_secs(1)));
11755
- TEST_BROADCAST_STALL .set(false);
11755
+ TEST_BROADCAST_PROPOSAL_STALL .set(false);
11756
11756
let block_proposal_n_prime =
11757
11757
wait_for_block_proposal().expect("Failed to get block proposal N'");
11758
11758
assert_eq!(
11759
11759
block_proposal_n_prime.block.header.chain_length,
11760
11760
chain_after.stacks_tip_height
11761
11761
);
11762
11762
// Make sure that no subsequent proposal arrives before the block_proposal_timeout is exceeded
11763
- TEST_BROADCAST_STALL .set(true);
11763
+ TEST_BROADCAST_PROPOSAL_STALL .set(true);
11764
11764
TEST_VALIDATE_STALL.set(false);
11765
11765
// We only need to wait the difference between the two timeouts now since we already slept for a min of reorg_attempts_activity_timeout + 1
11766
11766
std::thread::sleep(block_proposal_timeout.saturating_sub(reorg_attempts_activity_timeout));
@@ -11777,7 +11777,7 @@ fn reorg_attempts_activity_timeout_exceeded() {
11777
11777
11778
11778
info!("------------------------- Wait for Block N+1 Proposal -------------------------");
11779
11779
test_observer::clear();
11780
- TEST_BROADCAST_STALL .set(false);
11780
+ TEST_BROADCAST_PROPOSAL_STALL .set(false);
11781
11781
wait_for(30, || {
11782
11782
let block_proposal_n_1 =
11783
11783
wait_for_block_proposal().expect("Failed to get block proposal N+1");
0 commit comments