Skip to content

Commit

Permalink
fix(fw): DATALOAD pushed_stack_items (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdobacz committed Sep 6, 2024
1 parent 8da6e5d commit 8eed02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ethereum_test_vm/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -4704,7 +4704,7 @@ class Opcodes(Opcode, Enum):
Source: [eips.ethereum.org/EIPS/eip-4200](https://eips.ethereum.org/EIPS/eip-4200)
"""

DATALOAD = Opcode(0xD0, popped_stack_items=1, kwargs=["offset"])
DATALOAD = Opcode(0xD0, popped_stack_items=1, pushed_stack_items=1, kwargs=["offset"])
"""
!!! Note: This opcode is under development
Expand Down

0 comments on commit 8eed02f

Please sign in to comment.