We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d327717 commit 29ff22aCopy full SHA for 29ff22a
eth/abc.py
@@ -1594,13 +1594,13 @@ def stack_dup(self, position: int) -> None:
1594
# Return Stack Managemement
1595
#
1596
@abstractmethod
1597
- def rstack_push_int(self) -> Callable[[int], None]:
+ def rstack_push_int(self) -> None:
1598
"""
1599
Push integer onto the return stack.
1600
1601
1602
1603
- def rstack_pop1_int(self) -> Callable[[int], None]:
+ def rstack_pop1_int(self) -> int:
1604
1605
Pop integer off the return stack and return it.
1606
0 commit comments