Allow extra lookahead in the verifier, state, and block commit queues (#5490)

This commit is contained in:
teor 2022-10-28 06:16:42 +10:00 committed by GitHub
parent c812f880cf
commit 7b47aac370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;
/// 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;