aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-31 00:10:02 +0800
committerobscuren <geffobscura@gmail.com>2014-12-31 00:10:02 +0800
commita9068aa8ff1b3ee1a665f3759f4b3a94ac702884 (patch)
tree034cc7b5e49b8b5bb15e94d01425c0512a55aaba /vm
parent51a97c031fdb609c869f64271e1c52966974a2ee (diff)
parent89244981a8a9f190a6afc74ec2c584692f04dcdd (diff)
downloadgo-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.tar
go-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.tar.gz
go-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.tar.bz2
go-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.tar.lz
go-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.tar.xz
go-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.tar.zst
go-tangerine-a9068aa8ff1b3ee1a665f3759f4b3a94ac702884.zip
Merge branch 'develop' into poc8
Diffstat (limited to 'vm')
-rw-r--r--vm/vm_debug.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_debug.go b/vm/vm_debug.go
index 9a538c940..933fb7b12 100644
--- a/vm/vm_debug.go
+++ b/vm/vm_debug.go
@@ -140,7 +140,7 @@ func (self *DebugVm) Run(me, caller ClosureRef, code []byte, value, gas, price *
// Stack checks only
case ISZERO, CALLDATALOAD, POP, JUMP, NOT: // 1
require(1)
- case ADD, SUB, DIV, SDIV, MOD, SMOD, LT, GT, SLT, SGT, EQ, AND, OR, XOR, BYTE: // 2
+ case ADD, SUB, DIV, SDIV, MOD, SMOD, LT, GT, SLT, SGT, EQ, AND, OR, XOR, BYTE, SIGNEXTEND: // 2
require(2)
case ADDMOD, MULMOD: // 3
require(3)