Skip to content

Commit

Permalink
Make VestingWallet token event argument indexed (#2988)
Browse files Browse the repository at this point in the history
(cherry picked from commit 0859c70)
  • Loading branch information
frangio committed Nov 25, 2021
1 parent 0413d58 commit 94a0b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/finance/VestingWallet.sol
Expand Up @@ -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;
Expand Down

0 comments on commit 94a0b8f

Please sign in to comment.