Skip to content

Commit 245a0e4

Browse files
Giuseppe CeramiGiuseppe Cerami
authored andcommitted
[WIP] Implement subroutine opcodes
1 parent 06cd73d commit 245a0e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eth/vm/rstack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class RStack():
3030
__slots__ = ['values', '_append', '_pop_int', '__len__']
3131

3232
def __init__(self) -> None:
33-
values: List[int]
33+
values: List[int] = []
3434
self.values = values
3535
self._append = values.append
3636
self._pop_typed = values.pop

0 commit comments

Comments
 (0)