-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: address audit feedback #57
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.
lgtm
/// @dev The rate is expressed as a decimal*1e18. | ||
/// @dev For example 5% APY is 0.0000928276004952% yield per checkpoint period. | ||
/// @dev This is expressed as 928_276_004_952 or 0.000000928276004952*1e18. | ||
uint256 public constant INFLATION_RATE = 928_276_004_952; |
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.
We made this a constant because we expect to just replace the validatorRewarder if we want to change the rate?
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.
yes, we could just replace the contract. also we need to reimplement this contract based on @carsonfarmer's new, simplified proposal #59
Signed-off-by: avichalp <[email protected]>
Signed-off-by: avichalp <[email protected]>
9aca62f
to
5ecdb97
Compare
Implement changes in the existing contracts as proposed in #47 audit feedback. Signed-off-by: avichalp <[email protected]>
Implement changes in the existing contracts as proposed in the #47