Skip to content

Commit 29ff22a

Browse files
Giuseppe CeramiGiuseppe Cerami
authored andcommitted
[WIP] Implement subroutine opcodes
1 parent d327717 commit 29ff22a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eth/abc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,13 +1594,13 @@ def stack_dup(self, position: int) -> None:
15941594
# Return Stack Managemement
15951595
#
15961596
@abstractmethod
1597-
def rstack_push_int(self) -> Callable[[int], None]:
1597+
def rstack_push_int(self) -> None:
15981598
"""
15991599
Push integer onto the return stack.
16001600
"""
16011601

16021602
@abstractmethod
1603-
def rstack_pop1_int(self) -> Callable[[int], None]:
1603+
def rstack_pop1_int(self) -> int:
16041604
"""
16051605
Pop integer off the return stack and return it.
16061606
"""

0 commit comments

Comments
 (0)