Fix type annotation

better_bounds
Bernhard Mueller 5 years ago
parent 577a4aec2f
commit 299c6da5a3
  1. 2
      mythril/laser/ethereum/strategy/extensions/bounded_loops.py

@ -14,7 +14,7 @@ class JumpdestCountAnnotation(StateAnnotation):
"""State annotation that counts the number of jumps per destination."""
def __init__(self) -> None:
self._reached_count = {} # type: Dict[str, int]
self._reached_count = {} # type: Dict[int, int]
self.trace = [] # type: List[int]
def __copy__(self):

Loading…
Cancel
Save