From 47450f97fc3700539948865a86019b35fca971fa Mon Sep 17 00:00:00 2001 From: rjl493456442 Date: Mon, 20 Jul 2026 22:12:35 +0800 Subject: [PATCH] core/vm: initialize the bogota instructions from Amsterdam (#35383) --- core/vm/jump_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/jump_table.go b/core/vm/jump_table.go index d92b42aaa5..9dcc4329b3 100644 --- a/core/vm/jump_table.go +++ b/core/vm/jump_table.go @@ -93,7 +93,7 @@ func validate(jt JumpTable) JumpTable { } func newBogotaInstructionSet() JumpTable { - instructionSet := newOsakaInstructionSet() + instructionSet := newAmsterdamInstructionSet() return validate(instructionSet) }