From 5c349e4a8c3e402208d79580477cd48554aaade9 Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Wed, 4 Jul 2018 23:39:42 +0530 Subject: [PATCH] Revert Dynld changes --- mythril/mythril.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/mythril.py b/mythril/mythril.py index cda02f40..b63cc137 100644 --- a/mythril/mythril.py +++ b/mythril/mythril.py @@ -339,7 +339,7 @@ class Mythril(object): if self.eth is None: self.set_api_rpc_infura() sym = SymExecWrapper(contract, address, - dynloader=DynLoader(self.eth) if not self.dynld else self.dynld, + dynloader=DynLoader(self.eth) if self.dynld else None, max_depth=max_depth) issues = fire_lasers(sym, modules)