We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff11358 commit d0f584aCopy full SHA for d0f584a
eth/vm/forks/constantinople/opcodes.py
@@ -11,7 +11,8 @@
11
opcode_values,
12
)
13
from eth.vm.forks.byzantium.opcodes import (
14
- BYZANTIUM_OPCODES
+ BYZANTIUM_OPCODES,
15
+ ensure_no_static
16
17
from eth.vm.forks.constantinople.constants import (
18
GAS_EXTCODEHASH_EIP1052
@@ -56,7 +57,7 @@
56
57
gas_cost=constants.GAS_CREATE,
58
)(),
59
opcode_values.SSTORE: as_opcode(
- logic_fn=sstore_eip1283,
60
+ logic_fn=ensure_no_static(sstore_eip1283),
61
mnemonic=mnemonics.SSTORE,
62
gas_cost=constants.GAS_NULL,
63
),
0 commit comments