Skip to content

Commit 8b605b4

Browse files
committed
crc: fix comments / pr feedback
1 parent 32f4303 commit 8b605b4

File tree

1 file changed

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

1 file changed

+2
-5
lines changed

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

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3369,7 +3369,6 @@ fn tx_replay_e2e_test() {
33693369
for i in 0..pre_fork_tenures {
33703370
info!("Mining pre-fork tenure {} of {pre_fork_tenures}", i + 1);
33713371
signer_test.mine_nakamoto_block(Duration::from_secs(30), true);
3372-
signer_test.check_signer_states_normal();
33733372
}
33743373

33753374
let tip = get_chain_info(&conf);
@@ -3445,7 +3444,6 @@ fn tx_replay_e2e_test() {
34453444
.submit_transfer_tx(&sender_sk2, send_fee, send_amt)
34463445
.unwrap();
34473446
test_observer::clear();
3448-
std::thread::sleep(Duration::from_secs(10));
34493447
TEST_MINE_STALL.set(false);
34503448
// First we will get the tenure change block. It shouldn't contain our two transfer transactions.
34513449
info!(
@@ -3461,9 +3459,9 @@ fn tx_replay_e2e_test() {
34613459
"---- Wait for block proposal at stacks block height {} ----",
34623460
stacks_height_before + 2
34633461
);
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
34653463
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");
34673465
assert!(rejected_block
34683466
.txs
34693467
.iter()
@@ -3595,7 +3593,6 @@ fn tx_replay_disagreement() {
35953593
miners
35963594
.signer_test
35973595
.mine_nakamoto_block(Duration::from_secs(30), false);
3598-
miners.signer_test.check_signer_states_normal();
35993596
}
36003597

36013598
let ignore_bitcoin_fork_keys = miners

0 commit comments

Comments
 (0)