aboutsummaryrefslogtreecommitdiffstats
path: root/light
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 /light
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 'light')
-rw-r--r--light/lightchain_test.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/light/lightchain_test.go b/light/lightchain_test.go
index 41010cf57..21b621046 100644
--- a/light/lightchain_test.go
+++ b/light/lightchain_test.go
@@ -327,9 +327,8 @@ func TestBadHeaderHashes(t *testing.T) {
var err error
headers := makeHeaderChainWithDiff(bc.genesisBlock, []int{1, 2, 4}, 10)
core.BadHashes[headers[2].Hash()] = true
- _, err = bc.InsertHeaderChain(headers, 1)
- if !core.IsBadHashError(err) {
- t.Errorf("error mismatch: want: BadHashError, have: %v", err)
+ if _, err = bc.InsertHeaderChain(headers, 1); err != core.ErrBlacklistedHash {
+ t.Errorf("error mismatch: have: %v, want %v", err, core.ErrBlacklistedHash)
}
}