core/vm: add missing PUSH0 handler in EIP-8024 test mini-interpreter (#33785)

This commit is contained in:
sashass1315 2026-02-09 09:39:55 +02:00 committed by GitHub
parent 777265620d
commit bc0db302ed
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: