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 2b3b0d0 commit c44954dCopy full SHA for c44954d
testnet/stacks-node/src/tests/signer/v0.rs
@@ -264,6 +264,9 @@ impl SignerTest<SpawnedSigner> {
264
info!("Signers initialized");
265
266
self.run_until_epoch_3_boundary();
267
+ std::thread::sleep(Duration::from_secs(1));
268
+ wait_for(60, || Ok(get_chain_info_opt(&self.running_nodes.conf).is_some()))
269
+ .expect("Timed out waiting for network to restart after 3.0 boundary reached");
270
271
// Wait until we see the first block of epoch 3.0.
272
// Note, we don't use `nakamoto_blocks_mined` counter, because there
0 commit comments