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 c44954d commit 6388ed7Copy full SHA for 6388ed7
testnet/stacks-node/src/tests/signer/v0.rs
@@ -265,8 +265,10 @@ impl SignerTest<SpawnedSigner> {
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");
+ wait_for(60, || {
+ Ok(get_chain_info_opt(&self.running_nodes.conf).is_some())
270
+ })
271
+ .expect("Timed out waiting for network to restart after 3.0 boundary reached");
272
273
// Wait until we see the first block of epoch 3.0.
274
// Note, we don't use `nakamoto_blocks_mined` counter, because there
0 commit comments