diff --git a/light-base/src/lib.rs b/light-base/src/lib.rs index 132544acdd..2dfa2dddcb 100644 --- a/light-base/src/lib.rs +++ b/light-base/src/lib.rs @@ -1093,8 +1093,8 @@ fn start_services( network_service::NetworkService::new(network_service::Config { platform: platform.clone(), identify_agent_version: network_identify_agent_version, - connections_open_pool_size: 5, - connections_open_pool_restore_delay: Duration::from_secs(1), + connections_open_pool_size: 8, + connections_open_pool_restore_delay: Duration::from_millis(100), chains_capacity: 1, }) }); diff --git a/wasm-node/CHANGELOG.md b/wasm-node/CHANGELOG.md index 469fc8280f..b11d76ab9b 100644 --- a/wasm-node/CHANGELOG.md +++ b/wasm-node/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Changed + +- Increase the rate at which connections are opened to 10 per second, with a pool of 8 simultaneous connections openings. ([#1425](https://github.com/smol-dot/smoldot/pull/1425)) + ## 2.0.12 - 2023-11-27 ### Fixed