diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-13 22:06:27 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-13 22:06:27 +0800 |
commit | 81245473486dd680b7121d4b227ca8a57d07b4b1 (patch) | |
tree | 0462828a95c3c1af684dc32fdcc15b26772fe762 /ethutil | |
parent | c734dde982c4ce778afa074e94efb09e552dbd84 (diff) | |
download | dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.tar dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.tar.gz dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.tar.bz2 dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.tar.lz dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.tar.xz dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.tar.zst dexon-81245473486dd680b7121d4b227ca8a57d07b4b1.zip |
Moving a head closer to interop
Diffstat (limited to 'ethutil')
-rw-r--r-- | ethutil/common.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/common.go b/ethutil/common.go index ddaf78f88..f63ba5d83 100644 --- a/ethutil/common.go +++ b/ethutil/common.go @@ -47,7 +47,7 @@ func CurrencyToString(num *big.Int) string { // Common big integers often used var ( Big1 = big.NewInt(1) - Big2 = big.NewInt(1) + Big2 = big.NewInt(2) Big0 = big.NewInt(0) Big32 = big.NewInt(32) Big256 = big.NewInt(0xff) |