Make VestingWallet token event argument indexed (#2988)

(cherry picked from commit 0859c70936)
This commit is contained in:
Francisco Giordano
2021-11-25 14:38:18 -03:00
parent 0413d58860
commit 94a0b8f573

View File

@ -19,7 +19,7 @@ import "../utils/math/Math.sol";
*/
contract VestingWallet is Context {
event EtherReleased(uint256 amount);
event ERC20Released(address token, uint256 amount);
event ERC20Released(address indexed token, uint256 amount);
uint256 private _released;
mapping(address => uint256) private _erc20Released;