From 52a4b804d19d78333a3a4ca35aa8d58f082d30c4 Mon Sep 17 00:00:00 2001 From: ii-cruz Date: Mon, 18 Nov 2024 14:40:50 -0600 Subject: [PATCH] Changing the max connections per peer. --- network-libp2p/src/behaviour.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network-libp2p/src/behaviour.rs b/network-libp2p/src/behaviour.rs index 15e01a31ac..ac26a382af 100644 --- a/network-libp2p/src/behaviour.rs +++ b/network-libp2p/src/behaviour.rs @@ -20,7 +20,7 @@ use crate::{ }; /// Maximum simultaneous libp2p connections per peer -const MAX_CONNECTIONS_PER_PEER: u32 = 3; +const MAX_CONNECTIONS_PER_PEER: u32 = 5; /// Network behaviour. /// This is composed of several other behaviours that build a tree of behaviours using