From 4c21f2bcc1d67e85f224960918392d8abe2fbbef Mon Sep 17 00:00:00 2001 From: tintinweb Date: Sun, 6 May 2018 00:07:10 +0000 Subject: [PATCH] fix invalid rval syntax --- mythril/interfaces/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/interfaces/cli.py b/mythril/interfaces/cli.py index c594d284..94724219 100644 --- a/mythril/interfaces/cli.py +++ b/mythril/interfaces/cli.py @@ -151,7 +151,7 @@ def main(): if args.code: # Load from bytecode - address = mythril.load_from_bytecode(args.code) + address, _ = mythril.load_from_bytecode(args.code) elif args.address: # Get bytecode from a contract address address, _ = mythril.load_from_address(args.address)