From 670076c8559b24b1c91e1cf999c6464668dfa040 Mon Sep 17 00:00:00 2001 From: cole-lightfighter Date: Fri, 15 Dec 2017 21:53:54 +0000 Subject: [PATCH] Fix compilation bug (#645) --- manticore/seth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manticore/seth.py b/manticore/seth.py index 8555b78..c875e05 100644 --- a/manticore/seth.py +++ b/manticore/seth.py @@ -531,7 +531,7 @@ class ManticoreEVM(Manticore): @staticmethod def compile(source_code): ''' Get initialization bytecode from a solidity source code ''' - name, source_code, bytecode, srcmap, srcmap_runtime, hashes, abi = ManticoreEVM._compile(source_code) + name, source_code, bytecode, runtime, srcmap, srcmap_runtime, hashes, abi, warnings = ManticoreEVM._compile(source_code) return bytecode @staticmethod