Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manticore/ethereum/solidity.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def __build_source_map(self, bytecode, srcmap):
# https://solidity.readthedocs.io/en/develop/miscellaneous.html#source-mappings
new_srcmap = {}
bytecode = self._without_metadata(bytecode)
if self.source_code and srcmap:
if self.source_code and bytecode and srcmap:

asm_offset = 0
asm_pos = 0
Expand Down