Skip to content

Commit

Permalink
Merge pull request #51 from jacekv/main
Browse files Browse the repository at this point in the history
Fixing wrong encoding
  • Loading branch information
jacekv authored Oct 11, 2024
2 parents d9c6024 + aba3c8b commit 148387d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pantos/client/library/blockchains/ethereum.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def __find_destination_transfer(
BlockchainAddress(signer_address) for signer_address in
transfer_event_args['signerAddresses']
], [
signature.to_0x_hex()
f"0x{signature.hex()}"
for signature in transfer_event_args['signatures']
])
return None

0 comments on commit 148387d

Please sign in to comment.