Skip to content

Commit

Permalink
feat(ucs01): evm: ensure sender is hex encoded
Browse files Browse the repository at this point in the history
  • Loading branch information
hussein-aitlahcen committed Oct 13, 2023
1 parent 306abce commit 535c1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/contracts/apps/ucs/01-relay/Relay.sol
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ contract UCS01Relay is IBCAppBase {
);
}
RelayPacket memory packet = RelayPacket({
sender: string(abi.encodePacked(msg.sender)),
sender: msg.sender.toHexString(),
receiver: receiver,
tokens: normalizedTokens
});
Expand Down

0 comments on commit 535c1ed

Please sign in to comment.