From 277374972bb32534349ab43fdaad7441ef55928a Mon Sep 17 00:00:00 2001 From: sashass1315 Date: Sat, 7 Feb 2026 18:47:27 +0200 Subject: [PATCH] core/vm: add missing PUSH0 handler in EIP-8024 test mini-interpreter --- core/vm/instructions_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/vm/instructions_test.go b/core/vm/instructions_test.go index 56cb2686a6..88290a07e6 100644 --- a/core/vm/instructions_test.go +++ b/core/vm/instructions_test.go @@ -1149,6 +1149,8 @@ func TestEIP8024_Execution(t *testing.T) { _, err = opJumpdest(&pc, evm, scope) case ISZERO: _, err = opIszero(&pc, evm, scope) + case PUSH0: + _, err = opPush0(&pc, evm, scope) case DUPN: _, err = opDupN(&pc, evm, scope) case SWAPN: