diff --git a/core/vm/jump_table_zkevm.go b/core/vm/jump_table_zkevm.go index f71f3aba710..963bf103d19 100644 --- a/core/vm/jump_table_zkevm.go +++ b/core/vm/jump_table_zkevm.go @@ -39,7 +39,12 @@ func newForkID4InstructionSet() JumpTable { instructionSet[EXTCODEHASH].execute = opExtCodeHash_zkevm // SELFDESTRUCT is replaces by SENDALL - instructionSet[SELFDESTRUCT].execute = opSendAll_zkevm + instructionSet[SELFDESTRUCT] = &operation{ + execute: opSendAll_zkevm, + dynamicGas: gasSelfdestruct_zkevm, + numPop: 1, + numPush: 0, + } validateAndFillMaxStack(&instructionSet) return instructionSet