-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
refactor(x/staking): Migrate LastValidatorPower to Collections #17498
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a1fa4e3
wip: migrate LastValidatorPower to collections
likhita-809 3862dba
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 0d3368b
add diff tests
likhita-809 29fcab0
remove commented code
likhita-809 3c103ee
remove log
likhita-809 0cb3d26
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 3c3a788
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 7a6d3f3
wip: fix few tests
likhita-809 467e94d
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 f20a10f
try fixing test
likhita-809 a4371b9
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 c301ee3
fix lint
likhita-809 77f8538
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 63e1385
try fixing tests
likhita-809 ee4a932
cleanup
likhita-809 629deff
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 8ff06cd
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 c0b5325
add changelog
likhita-809 82a5e19
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 5c19c74
Merge branch 'main' into likhita/lastValPowerKey
likhita-809 8b5809a
Merge branch 'main' into likhita/lastValPowerKey
likhita-809 5644719
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 fd43c95
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 3aa588e
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 a9d51e4
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 44194e8
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 ef2a887
address review comments
likhita-809 54c7b14
Merge branch 'main' of https://github.com/cosmos/cosmos-sdk into likh…
likhita-809 92cb535
update changelog
likhita-809 633714c
fix lint
likhita-809 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 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 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 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 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 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 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 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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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
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.
I have to say that I would find useful if we can add comments next to the field précising what is expected as key and as value. Right now, it is really not clear that we expect until I look deeper in the code.
I believe this would be a good practice to start doing when we simply use byte slices.