From d6781de5e649735d1db6a089e4d8c776a17033e4 Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 16 Sep 2022 00:55:24 +1000 Subject: [PATCH] Increase full sync time to 32 hours (#5172) --- 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 281547f9..8bd3ca5d 100644 --- a/zebrad/tests/common/sync.rs +++ b/zebrad/tests/common/sync.rs @@ -76,7 +76,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(28 * 60 * 60); +pub const FINISH_FULL_SYNC_TIMEOUT: Duration = Duration::from_secs(32 * 60 * 60); /// The test sync height where we switch to using the default lookahead limit. ///