Skip to content

Commit

Permalink
Export int as hex for t8n and ?everywhere?
Browse files Browse the repository at this point in the history
  • Loading branch information
winsvega committed Dec 17, 2024
1 parent bacb56e commit 9a4e5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ethereum_test_base_types/base_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def __str__(self) -> str:
"""
Returns the string representation of the number.
"""
return str(int(self))
return str(hex(self))

def hex(self) -> str:
"""
Expand Down

0 comments on commit 9a4e5fa

Please sign in to comment.