mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
core/vm: add missing PUSH0 handler in EIP-8024 test mini-interpreter (#33785)
This commit is contained in:
parent
777265620d
commit
bc0db302ed
1 changed files with 2 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue