Skip to content

Commit

Permalink
feat: add msg.sender to message identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
reednaa committed Feb 1, 2024
1 parent 9a50886 commit 91edf6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/polymer/IncentivizedPolymerEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ contract IncentivizedPolymerEscrow is IMETimeoutExtension, IbcMwUser, IbcUnivers
returns (bytes32)
{
return keccak256(
abi.encodePacked(bytes32(block.number), _UNIQUE_SOURCE_IDENTIFIER(), destinationIdentifier, message)
abi.encodePacked(msg.sender, bytes32(block.number), _UNIQUE_SOURCE_IDENTIFIER(), destinationIdentifier, message)
);
}

Expand Down

0 comments on commit 91edf6f

Please sign in to comment.