Commit e45d9bb2 authored by Felix Lange's avatar Felix Lange

cmd/utils: bump default maxpeers to 25

This should improve ethereum block propagation times since
we're not not broadcasting blocks to 100% of peers.
parent 9c0f36c4
...@@ -195,7 +195,7 @@ var ( ...@@ -195,7 +195,7 @@ var (
MaxPeersFlag = cli.IntFlag{ MaxPeersFlag = cli.IntFlag{
Name: "maxpeers", Name: "maxpeers",
Usage: "Maximum number of network peers (network disabled if set to 0)", Usage: "Maximum number of network peers (network disabled if set to 0)",
Value: 16, Value: 25,
} }
MaxPendingPeersFlag = cli.IntFlag{ MaxPendingPeersFlag = cli.IntFlag{
Name: "maxpendpeers", Name: "maxpendpeers",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment