This commit is contained in:
obscuren
2014-11-02 19:39:45 +01:00
parent 3f90f7c898
commit 1bb398f4e2
2 changed files with 1 additions and 3 deletions

View File

@ -394,7 +394,7 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
stack.Push(base)
case SIGNEXTEND:
back := stack.Pop().Uint64()
if back.Cmp(big.NewInt(31)) < 0 {
if back < 31 {
bit := uint(back*8 + 7)
num := stack.Pop()
mask := new(big.Int).Lsh(ethutil.Big1, bit)