removed proof from event

This commit is contained in:
Shriya Tyagi 2022-10-25 23:01:29 +05:30
parent fbb2c3a876
commit 1effd77cc2
2 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,6 @@ contract Events {
event LogClaimedMorpho(
address account,
uint256 claimable,
bytes32[] proof,
uint256 setId
);

View File

@ -33,8 +33,8 @@ abstract contract MorphoRewards is Helpers, Events {
setUint(_setId, _claimable);
_eventName = "LogClaimedMorpho(address,uint256,bytes32[],uint256)";
_eventParam = abi.encode(_account, _claimable, _proof, _setId);
_eventName = "LogClaimedMorpho(address,uint256,uint256)";
_eventParam = abi.encode(_account, _claimable, _setId);
}
/**