aboutsummaryrefslogtreecommitdiffstats
path: root/node/defaults.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-04-25 17:54:33 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-04-25 17:54:33 +0800
commit0758d7fe5c3443fd50e6b46f494a47e28d35a961 (patch)
tree9139b0d279b111c94a02bc5307c513abbd6060c0 /node/defaults.go
parent749ccab9a4fb778c144f2e435249a8bb697e974e (diff)
downloadgo-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.tar
go-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.tar.gz
go-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.tar.bz2
go-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.tar.lz
go-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.tar.xz
go-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.tar.zst
go-tangerine-0758d7fe5c3443fd50e6b46f494a47e28d35a961.zip
cmd/utils, node: switch over default peer count to 50
Diffstat (limited to 'node/defaults.go')
-rw-r--r--node/defaults.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/node/defaults.go b/node/defaults.go
index 71e763346..564bb35b4 100644
--- a/node/defaults.go
+++ b/node/defaults.go
@@ -47,7 +47,7 @@ var DefaultConfig = Config{
WSModules: []string{"net", "web3"},
P2P: p2p.Config{
ListenAddr: ":30303",
- MaxPeers: 25,
+ MaxPeers: 50,
NAT: nat.Any(),
},
}