Skip to content

Commit

Permalink
fix: my cry
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Dec 18, 2024
1 parent fe592de commit 0667e17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ape_ethereum/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,9 @@ def _get_return_value_from_calltree(
try:
return self._ecosystem.decode_returndata(abi, HexBytes(raw_return_data))
except Exception as err:
logger.debug(f"Failed decoding raw returndata: {raw_return_data}. Error: {err}")
logger.debug(
f"Failed decoding raw returndata: {to_hex(raw_return_data)}. Error: {err}"
)
return tuple([None for _ in range(num_outputs)])

return tuple([None for _ in range(num_outputs)])
Expand Down

0 comments on commit 0667e17

Please sign in to comment.