diff options
author | Determinant <[email protected]> | 2020-06-28 00:37:28 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-06-28 00:37:28 -0400 |
commit | 110a55012a0cb29694157723535bbcf5142b671c (patch) | |
tree | c0a332b5152047e3c3b96ea6c24017087983cb60 /coreth.go | |
parent | e4f24f3cd168c63d211fb1e49f1745496d7a3437 (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.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, } ) |