Commit 94a0b8f5 by Francisco Giordano

Make VestingWallet token event argument indexed (#2988)

(cherry picked from commit 0859c709)
parent 0413d588
...@@ -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