File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
contracts/modules/TransferManager Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff 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 /**
You can’t perform that action at this time.
0 commit comments