diff options
author | Martin Holst Swende <martin@swende.se> | 2018-02-23 18:32:57 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-02-23 18:32:57 +0800 |
commit | 44d40ffce1200ce8875e187b57ac17e4901db32a (patch) | |
tree | 1bbdd570d093740372fd24e8463a707aa56cffe8 /common | |
parent | ae9f97221a96a86e4343a5c3cc4b1db44627a2f3 (diff) | |
download | go-tangerine-44d40ffce1200ce8875e187b57ac17e4901db32a.tar.gz go-tangerine-44d40ffce1200ce8875e187b57ac17e4901db32a.tar.zst go-tangerine-44d40ffce1200ce8875e187b57ac17e4901db32a.zip |
core, vm, common: define constantinople fork + shift (#16045)
* core, vm, common: define constantinople fork, start implementation of shift instructions
* vm: more testcases
* vm: add tests for intpool erroneous intpool handling
* core, vm, common: fix constantinople review concerns
* vm: add string<->op definitions for new opcodes
Diffstat (limited to 'common')
-rw-r--r-- | common/big.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/big.go b/common/big.go index b552608bc..65d4377bf 100644 --- a/common/big.go +++ b/common/big.go @@ -25,6 +25,6 @@ var ( Big3 = big.NewInt(3) Big0 = big.NewInt(0) Big32 = big.NewInt(32) - Big256 = big.NewInt(0xff) + Big256 = big.NewInt(256) Big257 = big.NewInt(257) ) |