Skip to content

Commit 2f99dde

Browse files
committed
fix: resolve merge conflicts
1 parent c4ffed8 commit 2f99dde

File tree

1 file changed

+4
-4
lines changed
  • testnet/stacks-node/src/tests/signer

1 file changed

+4
-4
lines changed

testnet/stacks-node/src/tests/signer/v0.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11714,7 +11714,7 @@ fn reorg_attempts_activity_timeout_exceeded() {
1171411714
let block_proposal_n = wait_for_block_proposal().expect("Failed to get block proposal N");
1171511715
let chain_after = get_chain_info(&signer_test.running_nodes.conf);
1171611716
assert_eq!(chain_after, chain_before);
11717-
TEST_BROADCAST_STALL.set(true);
11717+
TEST_BROADCAST_PROPOSAL_STALL.set(true);
1171811718

1171911719
info!("------------------------- Start Tenure B -------------------------");
1172011720
let commits_before = signer_test
@@ -11752,15 +11752,15 @@ fn reorg_attempts_activity_timeout_exceeded() {
1175211752
// Make sure to wait the reorg_attempts_activity_timeout AFTER the block is globally signed over
1175311753
// as this is the point where signers start considering from.
1175411754
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);
1175611756
let block_proposal_n_prime =
1175711757
wait_for_block_proposal().expect("Failed to get block proposal N'");
1175811758
assert_eq!(
1175911759
block_proposal_n_prime.block.header.chain_length,
1176011760
chain_after.stacks_tip_height
1176111761
);
1176211762
// 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);
1176411764
TEST_VALIDATE_STALL.set(false);
1176511765
// 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
1176611766
std::thread::sleep(block_proposal_timeout.saturating_sub(reorg_attempts_activity_timeout));
@@ -11777,7 +11777,7 @@ fn reorg_attempts_activity_timeout_exceeded() {
1177711777

1177811778
info!("------------------------- Wait for Block N+1 Proposal -------------------------");
1177911779
test_observer::clear();
11780-
TEST_BROADCAST_STALL.set(false);
11780+
TEST_BROADCAST_PROPOSAL_STALL.set(false);
1178111781
wait_for(30, || {
1178211782
let block_proposal_n_1 =
1178311783
wait_for_block_proposal().expect("Failed to get block proposal N+1");

0 commit comments

Comments
 (0)