From 23707f7c949d8830d3070d466b208e90f7262c28 Mon Sep 17 00:00:00 2001 From: Sara Reynolds Date: Tue, 12 Jul 2022 13:58:49 -0700 Subject: [PATCH] remove from london --- core/vm/eips.go | 1 + core/vm/jump_table.go | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/core/vm/eips.go b/core/vm/eips.go index 6f5757bb55de..b88385e60cf3 100644 --- a/core/vm/eips.go +++ b/core/vm/eips.go @@ -31,6 +31,7 @@ var activators = map[int]func(*JumpTable){ 2200: enable2200, 1884: enable1884, 1344: enable1344, + 1153: enable1153, } // EnableEIP enables the given EIP on the config. diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index 25298faf7334..eef3b53d8c66 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -95,8 +95,6 @@ func newLondonInstructionSet() JumpTable { instructionSet := newBerlinInstructionSet() enable3529(&instructionSet) // EIP-3529: Reduction in refunds https://eips.ethereum.org/EIPS/eip-3529 enable3198(&instructionSet) // Base fee opcode https://eips.ethereum.org/EIPS/eip-3198 - // TODO: separate into own function - enable1153(&instructionSet) return validate(instructionSet) }