This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Storage migration of elections-phragmen #3948
Merged
Merged
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
fa78aff
Initial sotrage migration
kianenigma 0004b29
Fix some deps
kianenigma 8599cb5
test added
kianenigma 46157cd
another dep removed
kianenigma 4bc5441
Update srml/elections-phragmen/src/lib.rs
gavofyork 832235f
Apply suggestions from code review
gavofyork 2f2424e
a bit nicer
kianenigma 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,27 +5,24 @@ authors = ["Parity Technologies <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
serde = { version = "1.0.101", optional = true } | ||
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } | ||
primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false } | ||
runtime_io = { package = "sr-io", path = "../../core/sr-io", default-features = false } | ||
sr-primitives = { path = "../../core/sr-primitives", default-features = false } | ||
phragmen = { package = "substrate-phragmen", path = "../../core/phragmen", default-features = false } | ||
srml-support = { path = "../support", default-features = false } | ||
system = { package = "srml-system", path = "../system", default-features = false } | ||
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false } | ||
|
||
[dev-dependencies] | ||
runtime_io = { package = "sr-io", path = "../../core/sr-io" } | ||
hex-literal = "0.2.1" | ||
balances = { package = "srml-balances", path = "../balances" } | ||
primitives = { package = "substrate-primitives", path = "../../core/primitives" } | ||
serde = { version = "1.0.101" } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"codec/std", | ||
"primitives/std", | ||
"serde", | ||
"runtime_io/std", | ||
"srml-support/std", | ||
"sr-primitives/std", | ||
"phragmen/std", | ||
|
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.
should just initialise this to
true
here? also will it better to use au8
version byte instead?upgrade existing chain won't reinitialise this and will have
DidMigrate
to beNone
which defaults tofalse
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.
Good ideas.
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.
no need for version byte. once the upgrade is through, a second update should remove the item from storage, and then all logic as well as the storage item declaration may be removed from code completely.
this process can be repeated whenever necessary and doesn't leave an additional set of storage items around indefinitely.
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.
should be left without default, or as is with = false.
in general we'd want an additional genesis item that set it to true, but setting a default isn't the way to do that.
this code won't live long enough to be worth it, though.