From 7b47aac3703afe2e5efb45cdeb537a238ef45d4e Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 28 Oct 2022 06:16:42 +1000 Subject: [PATCH] Allow extra lookahead in the verifier, state, and block commit queues (#5490) --- zebrad/src/components/sync/downloads.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebrad/src/components/sync/downloads.rs b/zebrad/src/components/sync/downloads.rs index f1287536aa5..360383088eb 100644 --- a/zebrad/src/components/sync/downloads.rs +++ b/zebrad/src/components/sync/downloads.rs @@ -49,7 +49,7 @@ type BoxError = Box; /// the rest of the capacity is reserved for the other queues. /// There is no reserved capacity for the syncer queue: /// if the other queues stay full, the syncer will eventually time out and reset. -pub const VERIFICATION_PIPELINE_SCALING_MULTIPLIER: usize = 4; +pub const VERIFICATION_PIPELINE_SCALING_MULTIPLIER: usize = 5; #[derive(Copy, Clone, Debug)] pub(super) struct AlwaysHedge;