aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-04-07 16:03:11 +0800
committerGitHub <noreply@github.com>2017-04-07 16:03:11 +0800
commitcc13d576f07fb6803e09fb42880591a67b8b0ef6 (patch)
tree6b2371c34416e3697443d836aab3a1f7fc32e77a /cmd
parent71fdaa42386173da7bfa13f1728c394aeeb4eb01 (diff)
parent158d603528d2ba36b633a8f22a2bff8329f69717 (diff)
downloadgo-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.tar
go-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.tar.gz
go-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.tar.bz2
go-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.tar.lz
go-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.tar.xz
go-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.tar.zst
go-tangerine-cc13d576f07fb6803e09fb42880591a67b8b0ef6.zip
Merge pull request #13870 from karalabe/miners-fixes
all: clean up various error handling in core and the miner
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/main.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index c4309f44b..bc5cf06e8 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -161,12 +161,6 @@ func init() {
// Start system runtime metrics collection
go metrics.CollectProcessMetrics(3 * time.Second)
- // This should be the only place where reporting is enabled
- // because it is not intended to run while testing.
- // In addition to this check, bad block reports are sent only
- // for chains with the main network genesis block and network id 1.
- eth.EnableBadBlockReporting = true
-
utils.SetupNetwork(ctx)
return nil
}