From e92fce8a03c8accea897f15bf350c785082e0b7b Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Tue, 23 Jun 2015 21:35:25 +0200 Subject: [PATCH] core/vm: add SSTORE to "dynamic" --- core/vm/opcodes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/opcodes.go b/core/vm/opcodes.go index 4bd3abce7a..4535ab6b02 100644 --- a/core/vm/opcodes.go +++ b/core/vm/opcodes.go @@ -335,7 +335,7 @@ func (o OpCode) String() string { func isDynamic(op OpCode) bool { switch op { - case CREATE, CALL, CALLCODE, JUMP, JUMPI, SUICIDE, STOP, RETURN, EXTCODECOPY, CODECOPY, MSTORE, MSTORE8: + case CREATE, CALL, CALLCODE, JUMP, JUMPI, SUICIDE, STOP, RETURN, EXTCODECOPY, CODECOPY, MSTORE, MSTORE8, SSTORE: return true } if _, ok := opCodeToString[op]; !ok {