Fix compilation bug (#645)

This commit is contained in:
cole-lightfighter
2017-12-15 16:53:54 -05:00
committed by Mark Mossberg
parent 9839cbdbb0
commit 670076c855
+1 -1
View File
@@ -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