From ca18202eb9a94de1d4b51c1572fa74edfa2773bf Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 24 May 2016 18:49:54 +0200 Subject: eth: enable bad block reports We used to have reporting of bad blocks, but it was disabled before the Frontier release. We need it back because users are usually unable to provide the full RLP data of a bad block when it occurs. A shortcoming of this particular implementation is that the origin peer is not tracked for blocks received during eth/63 sync. No origin peer info is still better than no report at all though. --- tests/init.go | 7 ------- 1 file changed, 7 deletions(-) (limited to 'tests') diff --git a/tests/init.go b/tests/init.go index 5112b274d..0c07f8b23 100644 --- a/tests/init.go +++ b/tests/init.go @@ -25,8 +25,6 @@ import ( "net/http" "os" "path/filepath" - - "github.com/ethereum/go-ethereum/core" ) var ( @@ -59,11 +57,6 @@ var ( VmSkipTests = []string{} ) -// Disable reporting bad blocks for the tests -func init() { - core.DisableBadBlockReporting = true -} - func readJson(reader io.Reader, value interface{}) error { data, err := ioutil.ReadAll(reader) if err != nil { -- cgit v1.2.3