Fix imports for python 3.10 (#1661)

* Fix issues with arbitrary jump dest

* Support abi

* Add partial abi support

* Fix test

* Fix test directory

* Fix OOG issue

* Fix issue with simplify

* Fix typo

* Fix import

* Refactor
pull/1662/head
Nikhil Parasaram 2 years ago committed by GitHub
parent 485b224598
commit ac2811701a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      mythril/disassembler/asm.py

@ -2,7 +2,12 @@
code disassembly.""" code disassembly."""
import re import re
try:
from collections.abc import Generator from collections.abc import Generator
except ImportError:
from collections import Generator
from functools import lru_cache from functools import lru_cache
from mythril.ethereum import util from mythril.ethereum import util

Loading…
Cancel
Save