Unverified Commit 0859c709 by Francisco Giordano Committed by GitHub

Make VestingWallet token event argument indexed (#2988)

parent 6481b05e
...@@ -19,7 +19,7 @@ import "../utils/math/Math.sol"; ...@@ -19,7 +19,7 @@ import "../utils/math/Math.sol";
*/ */
contract VestingWallet is Context { contract VestingWallet is Context {
event EtherReleased(uint256 amount); event EtherReleased(uint256 amount);
event ERC20Released(address token, uint256 amount); event ERC20Released(address indexed token, uint256 amount);
uint256 private _released; uint256 private _released;
mapping(address => uint256) private _erc20Released; mapping(address => uint256) private _erc20Released;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment