aboutsummaryrefslogtreecommitdiff
path: root/coreth.go
diff options
context:
space:
mode:
Diffstat (limited to 'coreth.go')
-rw-r--r--coreth.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreth.go b/coreth.go
index f7e89ef..b7e45af 100644
--- a/coreth.go
+++ b/coreth.go
@@ -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 := &ETHChain{backend: backend, cb: cb, mcb: mcb, bcb: bcb}
if etherBase == nil {
- etherBase = &ZeroAddr
+ etherBase = &BlackholeAddr
}
backend.SetEtherbase(*etherBase)
return chain