diff options
author | Determinant <[email protected]> | 2020-06-28 01:00:40 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-06-28 01:00:40 -0400 |
commit | 13ebd8bd9468e9d769d598b0ca2afb72ba78cb97 (patch) | |
tree | 69f5c9be8f9793f753b29ad7937d182692d1648d /coreth.go | |
parent | 110a55012a0cb29694157723535bbcf5142b671c (diff) |
use non-zero hash as the blackholev0.2.7-rc.4
Diffstat (limited to 'coreth.go')
-rw-r--r-- | coreth.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,8 +23,8 @@ import ( ) var ( - ZeroAddr = common.Address{ - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + BlackholeAddr = common.Address{ + 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, } ) @@ -66,7 +66,7 @@ func NewETHChain(config *eth.Config, nodecfg *node.Config, etherBase *common.Add backend, _ := eth.New(&ctx, config, cb, mcb, bcb, chainDB) chain := ÐChain{backend: backend, cb: cb, mcb: mcb, bcb: bcb} if etherBase == nil { - etherBase = &ZeroAddr + etherBase = &BlackholeAddr } backend.SetEtherbase(*etherBase) return chain |