aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-05-08 22:01:31 +0800
committerFelix Lange <fjl@twurst.com>2015-05-08 22:09:55 +0800
commite45d9bb29d3c04d57fd40533b43ea7929b6a4513 (patch)
tree45ab22c7e2e1dae94f8e7ec0a6f9b7d913026901
parent9c0f36c46dd85f02c6c02cc646714b2576a70f27 (diff)
downloadgo-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.tar
go-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.tar.gz
go-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.tar.bz2
go-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.tar.lz
go-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.tar.xz
go-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.tar.zst
go-tangerine-e45d9bb29d3c04d57fd40533b43ea7929b6a4513.zip
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.
-rw-r--r--cmd/utils/flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index a2ff05440..b18d9851f 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -195,7 +195,7 @@ var (
MaxPeersFlag = cli.IntFlag{
Name: "maxpeers",
Usage: "Maximum number of network peers (network disabled if set to 0)",
- Value: 16,
+ Value: 25,
}
MaxPendingPeersFlag = cli.IntFlag{
Name: "maxpendpeers",