@@ -3369,7 +3369,6 @@ fn tx_replay_e2e_test() {
3369
3369
for i in 0..pre_fork_tenures {
3370
3370
info!("Mining pre-fork tenure {} of {pre_fork_tenures}", i + 1);
3371
3371
signer_test.mine_nakamoto_block(Duration::from_secs(30), true);
3372
- signer_test.check_signer_states_normal();
3373
3372
}
3374
3373
3375
3374
let tip = get_chain_info(&conf);
@@ -3445,7 +3444,6 @@ fn tx_replay_e2e_test() {
3445
3444
.submit_transfer_tx(&sender_sk2, send_fee, send_amt)
3446
3445
.unwrap();
3447
3446
test_observer::clear();
3448
- std::thread::sleep(Duration::from_secs(10));
3449
3447
TEST_MINE_STALL.set(false);
3450
3448
// First we will get the tenure change block. It shouldn't contain our two transfer transactions.
3451
3449
info!(
@@ -3461,9 +3459,9 @@ fn tx_replay_e2e_test() {
3461
3459
"---- Wait for block proposal at stacks block height {} ----",
3462
3460
stacks_height_before + 2
3463
3461
);
3464
- // Next the signers will attempt to propose a block that does not contain the necessary replay tx and signers will reject it
3462
+ // Next the miner will attempt to propose a block that does not contain the necessary replay tx and signers will reject it
3465
3463
let rejected_block = wait_for_block_proposal(30, stacks_height_before + 2, &stacks_miner_pk)
3466
- .expect("Timed out waiting for block pushed after fork");
3464
+ .expect("Timed out waiting for block proposal after fork");
3467
3465
assert!(rejected_block
3468
3466
.txs
3469
3467
.iter()
@@ -3595,7 +3593,6 @@ fn tx_replay_disagreement() {
3595
3593
miners
3596
3594
.signer_test
3597
3595
.mine_nakamoto_block(Duration::from_secs(30), false);
3598
- miners.signer_test.check_signer_states_normal();
3599
3596
}
3600
3597
3601
3598
let ignore_bitcoin_fork_keys = miners
0 commit comments