Skip to content

Commit

Permalink
Fix a decoding error that was preventing address translation in trans…
Browse files Browse the repository at this point in the history
…actions (#2)
  • Loading branch information
ESultanik committed Oct 17, 2018
1 parent da97e62 commit 307a52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etheno/synchronization.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def _decode_value(value):
if isinstance(value, int):
return value
try:
return decode_hex(value)
return int(value, 16)
except Exception:
return None

Expand Down

0 comments on commit 307a52b

Please sign in to comment.