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.
idle_tenure_extend_active_mining
1 parent ca137aa commit 57b8be9Copy full SHA for 57b8be9
testnet/stacks-node/src/tests/signer/v0.rs
@@ -3930,7 +3930,14 @@ fn idle_tenure_extend_active_mining() {
3930
);
3931
submit_tx(&http_origin, &contract_tx);
3932
3933
- info!("----- Submitted deploy txs, mining BTC block -----");
+ // Wait for this transaction to be mined in a block
3934
+ info!("----- Submitted deploy txs, waiting for block -----");
3935
+ wait_for(60, || {
3936
+ Ok(get_account(&http_origin, &deployer_addr).nonce > deployer_nonce)
3937
+ })
3938
+ .unwrap();
3939
+
3940
+ info!("----- Mining BTC block -----");
3941
3942
signer_test.mine_nakamoto_block(Duration::from_secs(30), true);
3943
let mut last_response = signer_test.get_latest_block_response(slot_id);
0 commit comments