diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-16 05:52:57 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-16 06:03:08 +0800 |
commit | 79fa05867f78a159f4c229c21c12f0e4679b5b2e (patch) | |
tree | 89be5215a89ae128b6035b3eb2029af802719497 /common | |
parent | d116b9595cf6424293cc94d0dbe78153da860727 (diff) | |
download | dexon-79fa05867f78a159f4c229c21c12f0e4679b5b2e.tar.gz dexon-79fa05867f78a159f4c229c21c12f0e4679b5b2e.tar.zst dexon-79fa05867f78a159f4c229c21c12f0e4679b5b2e.zip |
xeth: set balance max balance to from in call. Closes #951
Diffstat (limited to 'common')
-rw-r--r-- | common/big.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/big.go b/common/big.go index e8057acf6..3257b179d 100644 --- a/common/big.go +++ b/common/big.go @@ -13,6 +13,7 @@ var ( Big32 = big.NewInt(32) Big256 = big.NewInt(0xff) Big257 = big.NewInt(257) + MaxBig = String2Big("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff") ) // Big pow |