diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-16 01:32:05 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-10-16 01:32:05 +0800 |
commit | 2f1f2e4811a6f3094f99b55f6553fe27d83f9aad (patch) | |
tree | c346188eb09c640d03e493b25f6d6870c4e59a4a /common/big.go | |
parent | 0de9b16b118cc1c12689b96fdded22f8a42f71f4 (diff) | |
parent | 2db97986460c57ba74a563d97a704a45a270df7d (diff) | |
download | dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.gz dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.bz2 dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.lz dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.xz dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.tar.zst dexon-2f1f2e4811a6f3094f99b55f6553fe27d83f9aad.zip |
Merge pull request #1887 from Gustav-Simonsson/icap
common, crypto: add ICAP functions
Diffstat (limited to 'common/big.go')
-rw-r--r-- | common/big.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/big.go b/common/big.go index a5d512d0d..4ce87ee0c 100644 --- a/common/big.go +++ b/common/big.go @@ -27,6 +27,9 @@ var ( BigTrue = Big1 BigFalse = Big0 Big32 = big.NewInt(32) + Big36 = big.NewInt(36) + Big97 = big.NewInt(97) + Big98 = big.NewInt(98) Big256 = big.NewInt(0xff) Big257 = big.NewInt(257) MaxBig = String2Big("0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff") |