mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
Removed proof from events
This commit is contained in:
parent
dcc54217f6
commit
2bc364f632
|
@ -6,7 +6,6 @@ contract Events {
|
|||
address user,
|
||||
address token,
|
||||
uint256 amt,
|
||||
bytes32[] proof,
|
||||
uint256 getId,
|
||||
uint256 setId
|
||||
);
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user