-
Notifications
You must be signed in to change notification settings - Fork 82
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(contracts): fix some bugs related to AssetManager
#327
fix(contracts): fix some bugs related to AssetManager
#327
Conversation
…undelegate When undelegate, only validator delegated KRO should be subtracted from `validatorKro`. The accumulated base reward should not be subtracted from `validatorKro`.
Previously, the input of `_convertToKroAssets` was wrong, so correct it from KGH shares to token ID. Also organize some public functions of `AssetManager` since previous version of `previewKghUndelegate` is not appropriate for public use.
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please add the base/target branch pattern to the list of additional branches to be reviewed in the settings. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
e8e4260
to
1682000
Compare
1682000
to
561e944
Compare
Since `msg.sender` in view function is zero address, we should not use it.
Since the validator will be removed from the validator tree when jailed, we don't need to update validator tree before sending the validator to the jail.
`validatorKro` is included in `totalKro`, so it does not need to be included in calculation of slashing amount. But we need to update this value as well when modifying each asset of vault when applying slash.
561e944
to
bcf70e8
Compare
@0xHansLee I just added some new commits related to bugs that found in challenge test. I did not separate it into another PR because it's not that big change and it's also related to |
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.
Confirmed and looks good to me. Thank you for your efforts.
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
Description
Fix some bugs related to
AssetManager
. I recommend to review commit by commit, since I've written the relevant context in the commit messages.