Skip to content

Commit

Permalink
node: Increase default.config.toml max_queue_size
Browse files Browse the repository at this point in the history
  • Loading branch information
Goshawk committed Aug 5, 2024
1 parent 2f8cfa6 commit 93d7196
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions node/default.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ log_type = 'json'
db_path = '/tmp/rusk-harness/'
consensus_keys_path = '/tmp/consensus_bls.keys'
generation_timeout = '3s'
max_queue_size = 1000
max_queue_size = 5000

[chain.db_options]
enable_debug = false
Expand Down Expand Up @@ -46,7 +46,7 @@ cache_prune_every = '5m'
max_inv_entries = 500
max_ongoing_requests = 100
delay_on_resp_msg = 500
max_queue_size = 1000
max_queue_size = 5000

[mempool]
max_queue_size = 1000
max_queue_size = 5000
1 change: 1 addition & 0 deletions rusk/src/lib/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use std::path::PathBuf;
use std::sync::Arc;
use std::time::Duration;

use crate::http::{HandleRequest, RuesEvent};
use execution_core::{dusk, Dusk};
use kadcast::config::Config as KadcastConfig;
use node::chain::ChainSrv;
Expand Down

0 comments on commit 93d7196

Please sign in to comment.