From ed658c8f3c2e5b31cb4b7019d7164b844f6805d2 Mon Sep 17 00:00:00 2001 From: jonny rhea <5555162+jrhea@users.noreply.github.com> Date: Wed, 10 Jun 2026 17:34:40 -0500 Subject: [PATCH] core/vm/gen: fix lint --- core/vm/gen/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vm/gen/main.go b/core/vm/gen/main.go index 2e7c0b45a3..c89ff2459b 100644 --- a/core/vm/gen/main.go +++ b/core/vm/gen/main.go @@ -217,7 +217,7 @@ func (g *generator) deriveMeta(forks []vm.GenFork) { // gas / stack bounds across all forks where it appears (that is what makes // it safe to bake as a constant). Bail loudly otherwise. for code, handler := range inlineHandler { - g.checkStable(byte(code), handler, forks) + g.checkStable(code, handler, forks) } for code := 0x62; code <= 0x7f; code++ { // PUSH3-32 g.checkStable(byte(code), "makePush", forks)