From b3d077c2a02dbdee0f5d0181bbe17ee17ce36a51 Mon Sep 17 00:00:00 2001 From: Revertron Date: Thu, 3 Nov 2022 14:48:23 +0100 Subject: [PATCH] Fixed max-nodes constant, changed by mistake. --- src/commons/constants.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commons/constants.rs b/src/commons/constants.rs index 2316840..9dfd773 100644 --- a/src/commons/constants.rs +++ b/src/commons/constants.rs @@ -51,4 +51,4 @@ pub const MIN_CONNECTED_NODES_START_SYNC: usize = 4; pub const MAX_READ_BLOCK_TIME: u128 = 100; pub const MAX_RECONNECTS: u32 = 5; pub const MAX_IDLE_SECONDS: u64 = 180; -pub const MAX_NODES: usize = 200; +pub const MAX_NODES: usize = 15;