aboutsummaryrefslogtreecommitdiff
path: root/coreth.go
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2020-06-28 00:37:28 -0400
committerDeterminant <tederminant@gmail.com>2020-06-28 00:37:28 -0400
commit110a55012a0cb29694157723535bbcf5142b671c (patch)
treec0a332b5152047e3c3b96ea6c24017087983cb60 /coreth.go
parente4f24f3cd168c63d211fb1e49f1745496d7a3437 (diff)
change zero addr to 0x0 (from 0x1000...0) with backward-compatibilityv0.2.7-rc.3
Diffstat (limited to 'coreth.go')
-rw-r--r--coreth.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreth.go b/coreth.go
index f0111d0..f7e89ef 100644
--- a/coreth.go
+++ b/coreth.go
@@ -24,7 +24,7 @@ import (
var (
ZeroAddr = common.Address{
- 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
}
)