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.
1 parent e1547e9 commit 02ac7d4Copy full SHA for 02ac7d4
testnet/stacks-node/src/tests/nakamoto_integrations.rs
@@ -7068,6 +7068,14 @@ fn continue_tenure_extend() {
7068
)
7069
.unwrap();
7070
7071
+ // wait for the extended miner to include the tx in a block
7072
+ // before we produce the next bitcoin block (this test will assert
7073
+ // that this is the case at the end of the test).
7074
+ wait_for(60, || {
7075
+ let nonce = get_account(&http_origin, &to_addr(&sender_sk)).nonce;
7076
+ Ok(nonce > transfer_nonce)
7077
+ }).unwrap();
7078
+
7079
let blocks_processed_before = coord_channel
7080
.lock()
7081
.expect("Mutex poisoned")
0 commit comments