mirror of https://github.com/ConsenSys/mythril
Merge pull request #1342 from ConsenSys/feature/enable_detection_plugins
Enable detection pluginsether_transfer
commit
c571fa287f
@ -1,6 +1,14 @@ |
|||||||
# We use RsT document formatting in docstring. For example :param to mark parameters. |
# We use RsT document formatting in docstring. For example :param to mark parameters. |
||||||
# See PEP 287 |
# See PEP 287 |
||||||
__docformat__ = "restructuredtext" |
__docformat__ = "restructuredtext" |
||||||
|
import logging |
||||||
|
|
||||||
# Accept mythril.VERSION to get mythril's current version number |
# Accept mythril.VERSION to get mythril's current version number |
||||||
from .__version__ import __version__ as VERSION # NOQA |
from .__version__ import __version__ as VERSION # NOQA |
||||||
|
from mythril.plugin.loader import MythrilPluginLoader |
||||||
|
|
||||||
|
log = logging.getLogger(__name__) |
||||||
|
|
||||||
|
# Initialise core Mythril Components |
||||||
|
log.info("Initializing core Mythril components") |
||||||
|
_ = MythrilPluginLoader() |
||||||
|
Loading…
Reference in new issue