Skip to content

Commit 6682ce8

Browse files
committed
fix: increase timeout while waiting for mock miner to sync
1 parent cae4ec4 commit 6682ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testnet/stacks-node/src/tests/nakamoto_integrations.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7254,7 +7254,7 @@ fn mock_mining() {
72547254
let mock_miner_timeout = Instant::now();
72557255
while follower_naka_mined_blocks.load(Ordering::SeqCst) <= follower_naka_mined_blocks_before
72567256
{
7257-
if mock_miner_timeout.elapsed() >= Duration::from_secs(30) {
7257+
if mock_miner_timeout.elapsed() >= Duration::from_secs(60) {
72587258
panic!(
72597259
"Timed out waiting for mock miner block {}",
72607260
follower_naka_mined_blocks_before + 1

0 commit comments

Comments
 (0)