From 36c429c30289cda93f5648eef58dc19095dc8f5b Mon Sep 17 00:00:00 2001 From: "Owain G. Ainsworth" Date: Mon, 14 Oct 2013 21:56:39 +0100 Subject: [PATCH] Bump maxpeers to 125 like bitcoind. It helps a lot if our max peers doesn't equal the max we'll try and open outbound. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 6032fb53..608e83a1 100644 --- a/config.go +++ b/config.go @@ -23,7 +23,7 @@ const ( defaultConfigFilename = "btcd.conf" defaultLogLevel = "info" defaultBtcnet = btcwire.MainNet - defaultMaxPeers = 8 + defaultMaxPeers = 125 defaultBanDuration = time.Hour * 24 defaultVerifyEnabled = false defaultDbType = "leveldb"