Skip to content

Commit efbba96

Browse files
authored
core/vm: update gas cost of CLZ to five (#32172)
ethereum/EIPs@a794de3
1 parent 1cbcebc commit efbba96

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/vm/eips.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,10 +311,11 @@ func enable4844(jt *JumpTable) {
311311
}
312312
}
313313

314+
// enable7939 enables EIP-7939 (CLZ opcode)
314315
func enable7939(jt *JumpTable) {
315316
jt[CLZ] = &operation{
316317
execute: opCLZ,
317-
constantGas: GasFastestStep,
318+
constantGas: GasFastStep,
318319
minStack: minStack(1, 1),
319320
maxStack: maxStack(1, 1),
320321
}

0 commit comments

Comments
 (0)