Skip to content

Commit c4a0af6

Browse files
satyamakgecadamdossa
authored andcommitted
indexing the param (#500)
1 parent ab3d94b commit c4a0af6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

contracts/modules/Checkpoint/ERC20DividendCheckpoint.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ contract ERC20DividendCheckpoint is ERC20DividendCheckpointStorage, DividendChec
2525
);
2626
event ERC20DividendClaimed(
2727
address indexed _payee,
28-
uint256 _dividendIndex,
28+
uint256 indexed _dividendIndex,
2929
address indexed _token,
3030
uint256 _amount,
3131
uint256 _withheld
3232
);
3333
event ERC20DividendReclaimed(
3434
address indexed _claimer,
35-
uint256 _dividendIndex,
35+
uint256 indexed _dividendIndex,
3636
address indexed _token,
3737
uint256 _claimedAmount
3838
);
3939
event ERC20DividendWithholdingWithdrawn(
4040
address indexed _claimer,
41-
uint256 _dividendIndex,
41+
uint256 indexed _dividendIndex,
4242
address indexed _token,
4343
uint256 _withheldAmount
4444
);

contracts/modules/Checkpoint/EtherDividendCheckpoint.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ contract EtherDividendCheckpoint is DividendCheckpoint {
1717
uint256 _expiry,
1818
uint256 _amount,
1919
uint256 _totalSupply,
20-
uint256 _dividendIndex,
20+
uint256 indexed _dividendIndex,
2121
bytes32 indexed _name
2222
);
23-
event EtherDividendClaimed(address indexed _payee, uint256 _dividendIndex, uint256 _amount, uint256 _withheld);
24-
event EtherDividendReclaimed(address indexed _claimer, uint256 _dividendIndex, uint256 _claimedAmount);
25-
event EtherDividendClaimFailed(address indexed _payee, uint256 _dividendIndex, uint256 _amount, uint256 _withheld);
26-
event EtherDividendWithholdingWithdrawn(address indexed _claimer, uint256 _dividendIndex, uint256 _withheldAmount);
23+
event EtherDividendClaimed(address indexed _payee, uint256 indexed _dividendIndex, uint256 _amount, uint256 _withheld);
24+
event EtherDividendReclaimed(address indexed _claimer, uint256 indexed _dividendIndex, uint256 _claimedAmount);
25+
event EtherDividendClaimFailed(address indexed _payee, uint256 indexed _dividendIndex, uint256 _amount, uint256 _withheld);
26+
event EtherDividendWithholdingWithdrawn(address indexed _claimer, uint256 indexed _dividendIndex, uint256 _withheldAmount);
2727

2828
/**
2929
* @notice Constructor

contracts/modules/TransferManager/GeneralTransferManager.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ contract GeneralTransferManager is GeneralTransferManagerStorage, ITransferManag
3232
// if allowAllWhitelistTransfers is TRUE, then _toTime and _fromTime is ignored when sending or receiving tokens
3333
// in any case, any investor sending or receiving tokens, must have a _expiryTime in the future
3434
event ModifyWhitelist(
35-
address _investor,
35+
address indexed _investor,
3636
uint256 _dateAdded,
37-
address _addedBy,
37+
address indexed _addedBy,
3838
uint256 _fromTime,
3939
uint256 _toTime,
4040
uint256 _expiryTime,

0 commit comments

Comments
 (0)