We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
burn_block_height_behavior
1 parent 383c0b8 commit 4cdb8dcCopy full SHA for 4cdb8dc
testnet/stacks-node/src/tests/signer/v0.rs
@@ -13693,6 +13693,12 @@ fn burn_block_height_behavior() {
13693
// Stall mining, so that the next call will get included in the tenure extend block
13694
TEST_MINE_STALL.set(true);
13695
13696
+ // Wait to ensure the miner reaches the stalled state
13697
+ // This is necessary because it's possible that the miner will mine the
13698
+ // following transaction before reaching the stall state, causing the test
13699
+ // to be flaky.
13700
+ sleep_ms(5000);
13701
+
13702
info!("------------------------- submit contract call 2 -------------------------");
13703
let call_tx = make_contract_call(
13704
&deployer_sk,
0 commit comments