mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-18 05:56:37 +00:00
parent
1cbcebcf47
commit
efbba965b5
1 changed files with 2 additions and 1 deletions
|
|
@ -311,10 +311,11 @@ func enable4844(jt *JumpTable) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// enable7939 enables EIP-7939 (CLZ opcode)
|
||||||
func enable7939(jt *JumpTable) {
|
func enable7939(jt *JumpTable) {
|
||||||
jt[CLZ] = &operation{
|
jt[CLZ] = &operation{
|
||||||
execute: opCLZ,
|
execute: opCLZ,
|
||||||
constantGas: GasFastestStep,
|
constantGas: GasFastStep,
|
||||||
minStack: minStack(1, 1),
|
minStack: minStack(1, 1),
|
||||||
maxStack: maxStack(1, 1),
|
maxStack: maxStack(1, 1),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue