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
@@ -648,6 +648,11 @@ impl<B: BlockT> ChainSync<B> {
self.downloaded_blocks
}
/// Returns the current number of peers stored within this state machine.
pub fn num_peers(&self) -> usize {
self.peers.len()
}
/// Handle a new connected peer.
///
/// Call this method whenever we connect to a new peer.