-
Notifications
You must be signed in to change notification settings - Fork 51
fix(SortitionModule): total stake update #2199
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
Open
unknownunknown1
wants to merge
8
commits into
dev
Choose a base branch
from
fix/total-stake-update
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
1006d82
fix(SortitionModule): total stake update
unknownunknown1 a2b5d76
feat(SortitionModule): add certora PoC to Foundry
unknownunknown1 719ea3e
fix(KC): malicious arbitrable revert
unknownunknown1 5799a3b
fix(SortitionModule): sync totalStaked with stakedPnk
unknownunknown1 cb492fd
fix(KC): check safeTransfer for withdrawLeftover
unknownunknown1 cae435e
fix(KC): remove try catch
unknownunknown1 8c256aa
test: adding back the reverting arbitrable test, small nitpicks
jaybuidl a016740
feat(KC): add event for failed transfer
unknownunknown1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 7231
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 42
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 182
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 42
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 6960
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 163
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 7695
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 9796
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 3466
🏁 Script executed:
Repository: kleros/kleros-v2
Length of output: 2059
Test coverage for delayed stakes affecting
totalStakedshould be added.The verification confirms the review comment's concern is valid. While the current
test_setStake_totalStaked()correctly validates immediate stakes, there is a test coverage gap:sortitionModule.totalStaked()(they return early in_setStake()at line 1351)executeDelayedStakes()is called during the Staking phase, it invokessetStakeBySortitionModule()which calls_setStake()with_noDelay=true, which then callsupdateTotalStake()to update the global totaltest_executeDelayedStakes()validates delayed stake execution but never checks thatsortitionModule.totalStaked()is correctly updated after executionA test case should verify that executing delayed stakes properly increments the global
totalStakedmetric.🤖 Prompt for AI Agents