Skip to content
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

Merged
merged 44 commits into from
Apr 5, 2024
Merged

SOV-3763 StakingRewardsOS #536

merged 44 commits into from
Apr 5, 2024

Conversation

tjcloa
Copy link
Contributor

@tjcloa tjcloa commented Feb 1, 2024

No description provided.

@tjcloa tjcloa marked this pull request as ready for review February 16, 2024 13:42
Copy link
Contributor

@ororopickpocket ororopickpocket left a 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.

Comment on lines 130 to 139
if (stopBlock > 0 && stopBlock < _block) {
uint256 previousWeightedStake = staking.getPriorWeightedStake(
_staker,
stopBlock,
_date
);
if (previousWeightedStake < weightedStake) {
weightedStake = previousWeightedStake;
}
}
Copy link
Contributor

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).

Copy link
Contributor Author

@tjcloa tjcloa Feb 19, 2024

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) {
Copy link
Contributor

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;
}

Copy link
Contributor Author

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.

@tjcloa tjcloa self-assigned this Feb 22, 2024
Copy link
Contributor Author

@tjcloa tjcloa left a 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) {
Copy link
Contributor Author

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.

Copy link
Contributor

@cwsnt cwsnt left a 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");
Copy link
Contributor

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?

@tjcloa tjcloa merged commit d25452d into development Apr 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants