You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
event KickReward in CvxLocker declares the first parameter as _user and second as _kicked, however, seems that these parameters are actually emitted in the opposite order:
emit KickReward(_rewardAddress, _account, reward);
Recommended Mitigation Steps
I think it should be this:
emit KickReward(_account, _rewardAddress, reward);
The text was updated successfully, but these errors were encountered:
Handle
pauliax
Vulnerability details
Impact
event KickReward in CvxLocker declares the first parameter as _user and second as _kicked, however, seems that these parameters are actually emitted in the opposite order:
emit KickReward(_rewardAddress, _account, reward);
Recommended Mitigation Steps
I think it should be this:
emit KickReward(_account, _rewardAddress, reward);
The text was updated successfully, but these errors were encountered: