bug/invalid-loop-pruning
Eric Ngo 5 years ago
parent 6f21b92796
commit 6f63749891
  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.""" """State annotation that counts the number of jumps per destination."""
def __init__(self) -> None: def __init__(self) -> None:
self._reached_count = {} # type: Dict[int, int] self._reached_count = {} # type: Dict[str, int]
def __copy__(self): def __copy__(self):
result = JumpdestCountAnnotation() result = JumpdestCountAnnotation()

Loading…
Cancel
Save