From 353eee9910f5dd7d1160e9f45aa8803cdbfc5da9 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 24 Nov 2022 09:07:37 +1000 Subject: [PATCH] Allow full sync tests to take 42 hours (#5708) --- zebrad/tests/common/sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebrad/tests/common/sync.rs b/zebrad/tests/common/sync.rs index 56e4ee7e..011248d8 100644 --- a/zebrad/tests/common/sync.rs +++ b/zebrad/tests/common/sync.rs @@ -74,7 +74,7 @@ pub const FINISH_PARTIAL_SYNC_TIMEOUT: Duration = Duration::from_secs(11 * 60 * /// The maximum time to wait for Zebrad to synchronize up to the chain tip starting from the /// genesis block. -pub const FINISH_FULL_SYNC_TIMEOUT: Duration = Duration::from_secs(36 * 60 * 60); +pub const FINISH_FULL_SYNC_TIMEOUT: Duration = Duration::from_secs(42 * 60 * 60); /// The test sync height where we switch to using the default lookahead limit. ///