File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3918,22 +3918,22 @@ fn tx_replay_failsafe() {
3918
3918
3919
3919
signer_test.mine_nakamoto_block(Duration::from_secs(30), true);
3920
3920
3921
- signer_test
3922
- .wait_for_signer_state_check(30, |state| Ok(state.get_tx_replay_set().is_some()))
3923
- .expect("Expected replay set to still be set");
3924
-
3925
3921
wait_for(30, || {
3926
3922
let tip = get_chain_info(&conf);
3927
3923
Ok(tip.stacks_tip_height > tip_after_fork.stacks_tip_height + 1)
3928
3924
})
3929
3925
.expect("Timed out waiting for a TenureChange block to be mined");
3930
3926
3927
+ signer_test
3928
+ .wait_for_signer_state_check(30, |state| Ok(state.get_tx_replay_set().is_some()))
3929
+ .expect("Expected replay set to still be set");
3930
+
3931
3931
info!("---- Mining a third tenure ----");
3932
3932
signer_test.mine_nakamoto_block(Duration::from_secs(30), true);
3933
3933
3934
3934
wait_for(30, || {
3935
3935
let tip = get_chain_info(&conf);
3936
- Ok(tip.stacks_tip_height > tip_after_fork.stacks_tip_height + 1 )
3936
+ Ok(tip.stacks_tip_height > tip_after_fork.stacks_tip_height + 2 )
3937
3937
})
3938
3938
.expect("Timed out waiting for a TenureChange block to be mined");
3939
3939
You can’t perform that action at this time.
0 commit comments