diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-24 23:24:04 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-25 05:12:54 +0800 |
commit | 12d654a6fc4580f9194a931032ebf0e1b1927279 (patch) | |
tree | 7d7654ee3c405f16a5361f52bb8bf84789989144 /core/blocks.go | |
parent | c04c8f10f04a41e762589358418c65fd99891bb4 (diff) | |
download | dexon-12d654a6fc4580f9194a931032ebf0e1b1927279.tar.gz dexon-12d654a6fc4580f9194a931032ebf0e1b1927279.tar.zst dexon-12d654a6fc4580f9194a931032ebf0e1b1927279.zip |
core, core/state: fixed consensus issue added touch revert
Implemented proper touch revert journal entries and copied a Parity
consensus bug in order to remain in sync with the current longest chain.
Diffstat (limited to 'core/blocks.go')
-rw-r--r-- | core/blocks.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/blocks.go b/core/blocks.go index ecccc541f..cf8c86507 100644 --- a/core/blocks.go +++ b/core/blocks.go @@ -21,4 +21,5 @@ import "github.com/ethereum/go-ethereum/common" // Set of manually tracked bad hashes (usually hard forks) var BadHashes = map[common.Hash]bool{ common.HexToHash("05bef30ef572270f654746da22639a7a0c97dd97a7050b9e252391996aaeb689"): true, + common.HexToHash("7d05d08cbc596a2e5e4f13b80a743e53e09221b5323c3a61946b20873e58583f"): true, } |