Removed proof from events

This commit is contained in:
Shriya Tyagi 2022-07-31 22:30:15 +04:00
parent dcc54217f6
commit 2bc364f632
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,6 @@ contract Events {
address user,
address token,
uint256 amt,
bytes32[] proof,
uint256 getId,
uint256 setId
);

View File

@ -36,8 +36,8 @@ contract EulerIncentives is Helpers, Events {
setUint(setId, _amt);
_eventName = "LogClaimed(address,address,uint256,bytes32[],uint256,uint256)";
_eventParam = abi.encode(user, token, _amt, proof, getId, setId);
_eventName = "LogClaimed(address,address,uint256,uint256,uint256)";
_eventParam = abi.encode(user, token, _amt, getId, setId);
}
}