From 3ed8c55e8d30061d2724a5ebf32be4d905b3917f Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Thu, 6 Oct 2022 12:36:22 +0200 Subject: [PATCH] Decrease default --out-peers from 25 to 15 --- client/cli/src/params/network_params.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cli/src/params/network_params.rs b/client/cli/src/params/network_params.rs index 0450b5f0e2566..960d6dd594eab 100644 --- a/client/cli/src/params/network_params.rs +++ b/client/cli/src/params/network_params.rs @@ -82,7 +82,7 @@ pub struct NetworkParams { pub allow_private_ipv4: bool, /// Specify the number of outgoing connections we're trying to maintain. - #[clap(long, value_name = "COUNT", default_value = "25")] + #[clap(long, value_name = "COUNT", default_value = "15")] pub out_peers: u32, /// Maximum number of inbound full nodes peers.