Skip to content

Commit

Permalink
Increase CAPACITY_FOR_DEPLOYMENTS to 1 << 10
Browse files Browse the repository at this point in the history
  • Loading branch information
vicsn committed Mar 12, 2024
1 parent 3b7269e commit 12cca35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/consensus/src/lib.rs
Expand Up @@ -55,7 +55,7 @@ use tokio::{

/// The capacity of the queue reserved for deployments.
/// Note: This is an inbound queue capacity, not a Narwhal-enforced capacity.
const CAPACITY_FOR_DEPLOYMENTS: usize = 1 << 4;
const CAPACITY_FOR_DEPLOYMENTS: usize = 1 << 10;
/// The capacity of the queue reserved for executions.
/// Note: This is an inbound queue capacity, not a Narwhal-enforced capacity.
const CAPACITY_FOR_EXECUTIONS: usize = 1 << 10;
Expand Down

0 comments on commit 12cca35

Please sign in to comment.