-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
chore: Audit x/staking and add "Since" proto comments #11920
Changes from all commits
d49d109
aa6683c
196b605
74ec625
deee14f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Since: cosmos-sdk 0.46 | ||
syntax = "proto3"; | ||
package cosmos.crypto.hd.v1; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
// Since: cosmos-sdk 0.46 | ||
syntax = "proto3"; | ||
package cosmos.crypto.keyring.v1; | ||
|
||
|
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -23,7 +23,7 @@ import ( | |||
) | ||||
|
||||
const ( | ||||
consensusVersion uint64 = 4 | ||||
consensusVersion uint64 = 3 | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Explanation: we were at 2 in v0.45 cosmos-sdk/x/staking/module.go Line 164 in 8bbeba5
No need to bump 2 versions at once There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Damn. I missed this. |
||||
) | ||||
|
||||
var ( | ||||
|
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.
Any ideas how we can enforce this better, that we don't forget then in normal PRs?
They are becoming important with the new app wiring.