Skip to content

Commit

Permalink
evm: Add indexing in TransferSent event (#547)
Browse files Browse the repository at this point in the history
* evm: Index `recipient` and `refundAddress` in `TransferSent` event
  • Loading branch information
nvsriram authored Nov 7, 2024
1 parent e84cbc1 commit 8d9e6ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evm/src/interfaces/INttManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ interface INttManager is IManagerBase {
/// @param recipientChain The chain ID of the recipient.
/// @param msgSequence The unique sequence ID of the message.
event TransferSent(
bytes32 recipient,
bytes32 refundAddress,
bytes32 indexed recipient,
bytes32 indexed refundAddress,
uint256 amount,
uint256 fee,
uint16 recipientChain,
Expand Down

0 comments on commit 8d9e6ab

Please sign in to comment.