diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-25 22:40:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 22:40:51 +0800 |
commit | b7ff0d42e3adbacd6f4186c633cf73d06bd16324 (patch) | |
tree | 6abc554b343b8f68e76b7303e652f22f89e47d5e /core/blocks.go | |
parent | 07aae19e5da66ed404453e6be70ab84db516207b (diff) | |
parent | c98bce709c392f3b469f956b5f66f095a30a7e2b (diff) | |
download | dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.gz dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.bz2 dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.lz dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.xz dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.zst dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.zip |
Merge pull request #14515 from karalabe/golint-tooooolong
core: fix various golint warnings and errors
Diffstat (limited to 'core/blocks.go')
-rw-r--r-- | core/blocks.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blocks.go b/core/blocks.go index cf8c86507..f20ba4aaf 100644 --- a/core/blocks.go +++ b/core/blocks.go @@ -18,7 +18,7 @@ package core import "github.com/ethereum/go-ethereum/common" -// Set of manually tracked bad hashes (usually hard forks) +// BadHashes represent a set of manually tracked bad hashes (usually hard forks) var BadHashes = map[common.Hash]bool{ common.HexToHash("05bef30ef572270f654746da22639a7a0c97dd97a7050b9e252391996aaeb689"): true, common.HexToHash("7d05d08cbc596a2e5e4f13b80a743e53e09221b5323c3a61946b20873e58583f"): true, |