Bump up version number and default connection limit

This commit is contained in:
TheKysek 2017-05-25 12:03:51 +02:00
parent 5503a8cb89
commit be6356db6d
No known key found for this signature in database
GPG Key ID: 50D9AF00D0B1C497

View File

@ -19,7 +19,7 @@ protocol_version = 3
services = 3 # NODE_NETWORK, NODE_SSL services = 3 # NODE_NETWORK, NODE_SSL
stream = 1 stream = 1
nonce = os.urandom(8) nonce = os.urandom(8)
user_agent = b'/MiNode:0.2.1/' user_agent = b'/MiNode:0.2.2/'
timeout = 600 timeout = 600
header_length = 24 header_length = 24
@ -42,7 +42,7 @@ node_pool = set()
unchecked_node_pool = set() unchecked_node_pool = set()
outgoing_connections = 8 outgoing_connections = 8
connection_limit = 150 connection_limit = 250
objects = {} objects = {}
objects_lock = threading.Lock() objects_lock = threading.Lock()