diff --git a/core/vm/eips.go b/core/vm/eips.go index a69946de4d..7764bd20b6 100644 --- a/core/vm/eips.go +++ b/core/vm/eips.go @@ -311,10 +311,11 @@ func enable4844(jt *JumpTable) { } } +// enable7939 enables EIP-7939 (CLZ opcode) func enable7939(jt *JumpTable) { jt[CLZ] = &operation{ execute: opCLZ, - constantGas: GasFastestStep, + constantGas: GasFastStep, minStack: minStack(1, 1), maxStack: maxStack(1, 1), }