From 2305f29af26ebb2e4408b5a1ad17c2a09851bfc5 Mon Sep 17 00:00:00 2001 From: Nikhil Parasaram Date: Tue, 3 Jul 2018 23:37:23 +0530 Subject: [PATCH] Fix the argument for dynloader in fire_lasers --- mythril/mythril.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/mythril.py b/mythril/mythril.py index cb011820..cda02f40 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 None, + dynloader=DynLoader(self.eth) if not self.dynld else self.dynld, max_depth=max_depth) issues = fire_lasers(sym, modules)