Skip to content

Commit 68ac39f

Browse files
satyamakgecpabloruiz55
authored andcommitted
add indexed params in event (#365)
1 parent a585ad2 commit 68ac39f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

contracts/modules/TransferManager/ManualApprovalTransferManager.sol

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,30 +35,30 @@ contract ManualApprovalTransferManager is ITransferManager {
3535
mapping (address => mapping (address => ManualBlocking)) public manualBlockings;
3636

3737
event AddManualApproval(
38-
address _from,
39-
address _to,
38+
address indexed _from,
39+
address indexed _to,
4040
uint256 _allowance,
4141
uint256 _expiryTime,
42-
address _addedBy
42+
address indexed _addedBy
4343
);
4444

4545
event AddManualBlocking(
46-
address _from,
47-
address _to,
46+
address indexed _from,
47+
address indexed _to,
4848
uint256 _expiryTime,
49-
address _addedBy
49+
address indexed _addedBy
5050
);
5151

5252
event RevokeManualApproval(
53-
address _from,
54-
address _to,
55-
address _addedBy
53+
address indexed _from,
54+
address indexed _to,
55+
address indexed _addedBy
5656
);
5757

5858
event RevokeManualBlocking(
59-
address _from,
60-
address _to,
61-
address _addedBy
59+
address indexed _from,
60+
address indexed _to,
61+
address indexed _addedBy
6262
);
6363

6464
/**

0 commit comments

Comments
 (0)