Add a hash of a non-UIP1 nodes to BadHashes

This commit is contained in:
Julian Yap 2019-03-02 23:48:57 -08:00
parent 42aa50c9a4
commit ce5b64c400

View file

@ -19,4 +19,6 @@ package core
import "github.com/ubiq/go-ubiq/common" import "github.com/ubiq/go-ubiq/common"
// BadHashes represent a 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{} var BadHashes = map[common.Hash]bool{
common.HexToHash("0x1ae014496c597f255ab617396b390761146c69dd3caa76c8cad11bc1eaefe2af"): true,
}