Skip to content

Commit f521490

Browse files
committed
fix: use ci-friendly timeouts in test
1 parent ad3dc03 commit f521490

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11340,7 +11340,7 @@ fn rbf_on_config_change() {
1134011340

1134111341
let mut last_log = Instant::now();
1134211342
last_log -= Duration::from_secs(5);
11343-
wait_for(10, || {
11343+
wait_for(30, || {
1134411344
let last_commit = &counters.naka_submitted_commit_last_stacks_tip.get();
1134511345
if last_log.elapsed() >= Duration::from_secs(5) {
1134611346
info!(
@@ -11359,7 +11359,7 @@ fn rbf_on_config_change() {
1135911359

1136011360
update_config(155000, 57);
1136111361

11362-
wait_for(12, || {
11362+
wait_for(30, || {
1136311363
let commit_count = &counters.naka_submitted_commits.get();
1136411364
Ok(*commit_count > commits_before)
1136511365
})

0 commit comments

Comments
 (0)