From be6356db6d9866f3f7e2118e59564e238836977a Mon Sep 17 00:00:00 2001 From: TheKysek Date: Thu, 25 May 2017 12:03:51 +0200 Subject: [PATCH] Bump up version number and default connection limit --- src/shared.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared.py b/src/shared.py index 3d5a064..fa01e0a 100644 --- a/src/shared.py +++ b/src/shared.py @@ -19,7 +19,7 @@ protocol_version = 3 services = 3 # NODE_NETWORK, NODE_SSL stream = 1 nonce = os.urandom(8) -user_agent = b'/MiNode:0.2.1/' +user_agent = b'/MiNode:0.2.2/' timeout = 600 header_length = 24 @@ -42,7 +42,7 @@ node_pool = set() unchecked_node_pool = set() outgoing_connections = 8 -connection_limit = 150 +connection_limit = 250 objects = {} objects_lock = threading.Lock()