We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20e8f6 commit ef38d75Copy full SHA for ef38d75
src/halmos/sevm.py
@@ -1703,7 +1703,9 @@ def try_resolve_contract_info(
1703
contract_name, filename, source_map = self._try_resolve_proxy_info(contract)
1704
1705
if contract_name is None:
1706
- warn(f"unknown deployed bytecode: {hexify(bytecode.unwrap())}")
+ warn(
1707
+ f"unknown deployed bytecode: {hexify(bytecode[:32].unwrap())}... ({byte_length(bytecode)} bytes total)"
1708
+ )
1709
1710
contract.contract_name = contract_name
1711
contract.filename = filename
0 commit comments