Split peer slots between full and light nodes (#10688)

* Split peer slots between full and light nodes

* Rustfmt

* Oops, accidentally removed a comma

* Remove else
This commit is contained in:
Pierre Krieger
2022-01-19 11:58:40 +01:00
committed by GitHub
parent fcfc70eaa2
commit 2c3787288a
5 changed files with 48 additions and 6 deletions
+1 -2
View File
@@ -808,8 +808,7 @@ where
let (handler, protocol_config) = StateRequestHandler::new(
&protocol_id,
client.clone(),
config.network.default_peers_set.in_peers as usize +
config.network.default_peers_set.out_peers as usize,
config.network.default_peers_set_num_full as usize,
);
spawn_handle.spawn("state-request-handler", Some("networking"), handler.run());
protocol_config