From f54f34e1ef0e507608573e50b6244f1ad332e9b1 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Thu, 30 Jan 2025 15:40:15 +0100 Subject: [PATCH] fix replay bugs found on kaustinen-7 Signed-off-by: Guillaume Ballet <3272758+gballet@users.noreply.github.com> --- core/vm/contracts.go | 2 +- core/vm/jump_table.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/vm/contracts.go b/core/vm/contracts.go index 06849e65ad..784b410802 100644 --- a/core/vm/contracts.go +++ b/core/vm/contracts.go @@ -139,7 +139,7 @@ var PrecompiledContractsPrague = PrecompiledContracts{ var PrecompiledContractsBLS = PrecompiledContractsPrague -var PrecompiledContractsVerkle = PrecompiledContractsPrague +var PrecompiledContractsVerkle = PrecompiledContractsBerlin var ( PrecompiledAddressesPrague []common.Address diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index 6610fa7f9a..dbd80706cd 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -87,7 +87,7 @@ func validate(jt JumpTable) JumpTable { } func newVerkleInstructionSet() JumpTable { - instructionSet := newCancunInstructionSet() + instructionSet := newShanghaiInstructionSet() enable4762(&instructionSet) return validate(instructionSet) }