Skip to content

Commit

Permalink
SolanaHandler: correct msg.sender encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
sshmatrix committed Apr 18, 2024
1 parent e5486bc commit a08feac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ERCS/erc-____.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function setValue(
// programId = 0x37868885bbaf236c5d2e7a38952f709e796a1c99d6c9d142a1a41755d7660de3
// account = 0xe853e0dcc1e57656bd760325679ea960d958a0a704274a5a12330208ba0f428f
// Parse sender as bytes32 type
bytes32 sender = bytes32(msg.sender)
bytes32 sender = bytes32(uint256(msg.sender))
// Defer write call to L2 handler
revert StorageHandledBySolana(
programId,
Expand Down

0 comments on commit a08feac

Please sign in to comment.