Skip to content

Commit

Permalink
fix(fw): Fix RETURNCONTRACT
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Jun 20, 2024
1 parent 881ba65 commit 544780b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ethereum_test_tools/vm/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -5249,9 +5249,7 @@ class Opcodes(Opcode, Enum):
"""

RETURNCONTRACT = Opcode(
0xEE, popped_stack_items=2, pushed_stack_items=1, data_portion_length=1
)
RETURNCONTRACT = Opcode(0xEE, popped_stack_items=2, data_portion_length=1)
"""
!!! Note: This opcode is under development
Expand Down

0 comments on commit 544780b

Please sign in to comment.