-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SOV-3763 StakingRewardsOS #536
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recommend a few small changes.
if (stopBlock > 0 && stopBlock < _block) { | ||
uint256 previousWeightedStake = staking.getPriorWeightedStake( | ||
_staker, | ||
stopBlock, | ||
_date | ||
); | ||
if (previousWeightedStake < weightedStake) { | ||
weightedStake = previousWeightedStake; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This logic should not be necessary anymore. The existing SOV staking rewards contract continues after the stopBlock, but increases of the stake are no longer considered. This osSOV staking rewards contract truly stops after the stop block, so this logic here is no longer required. I would just return 0 in case that (stopBlock > 0 && stopBlock < _block).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch, thanks
but this icheck would be done on every call in a cycle which seems to be better to be moved to the calling function
so, just moved this validation from this function
uint256 _date | ||
) internal view returns (uint256 weightedStake) { | ||
weightedStake = staking.getPriorWeightedStake(_staker, _block, _date); | ||
if (stopBlock > 0 && stopBlock < _block) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably can do this:
if(stopBlock == 0 || stopBlock > _block) return weightedStake;
uint256 previousWeightedStake = staking.getPriorWeightedStake(
_staker,
stopBlock,
_date
);
if (previousWeightedStake < weightedStake) {
weightedStake = previousWeightedStake;
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stop block would be checked on every iteration - more effective to have this check in the calling function, besides - separation of concerns. refactored.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comments addressed
uint256 _date | ||
) internal view returns (uint256 weightedStake) { | ||
weightedStake = staking.getPriorWeightedStake(_staker, _block, _date); | ||
if (stopBlock > 0 && stopBlock < _block) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stop block would be checked on every iteration - more effective to have this check in the calling function, besides - separation of concerns. refactored.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved with optional comment
msg.sender, | ||
true, | ||
_startTime | ||
); | ||
require(withdrawTimestamp > 0 && amount > 0, "No valid reward"); | ||
stakerNextWithdrawTimestamp[msg.sender] = withdrawTimestamp; | ||
require(nextWithdrawTimestamp > 0 && amount > 0, "No valid reward"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can u please cover this edge in the unit test?
No description provided.