aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/jump_table.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/vm/jump_table.go')
-rw-r--r--core/vm/jump_table.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go
index deedf70cd..8a997adc4 100644
--- a/core/vm/jump_table.go
+++ b/core/vm/jump_table.go
@@ -95,6 +95,14 @@ func newConstantinopleInstructionSet() [256]operation {
writes: true,
returns: true,
}
+ instructionSet[SSTORE] = operation{
+ execute: opSstore,
+ gasCost: gasSStoreEip1283,
+ validateStack: makeStackFunc(2, 0),
+ valid: true,
+ writes: true,
+ }
+
return instructionSet
}