From 1fb2fc0bc4de2a1e612d212067387e646a55d5ba Mon Sep 17 00:00:00 2001 From: Bui Quang Minh Date: Wed, 7 Aug 2024 11:47:48 +0700 Subject: [PATCH] core/vm: enable EIP-1153 Transient Storage in Cancun --- core/vm/jump_table.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index e7cbddf19..d18ede350 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -69,6 +69,7 @@ func newCancunInstructionSet() JumpTable { instructionSet := newShanghaiInstructionSet() enable4844(&instructionSet) // EIP-4844 (BLOBHASH opcode) enable7516(&instructionSet) // EIP-7516 (BLOBBASEFEE opcode) + enable1153(&instructionSet) // EIP-1153 "Transient Storage" enable5656(&instructionSet) // EIP-5656 (MCOPY opcode) enable6780(&instructionSet) // EIP-6780 SELFDESTRUCT only in same transaction return instructionSet