This repository has been 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
Better identifier and logging for runtime upgrades #8123
Merged
Merged
Changes from 11 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
4c0abc5
A clean new attempt
kianenigma 7f9b5b8
Checkpoint to move remote.
kianenigma 4883812
A lot of dependency wiring to make it feature gated.
kianenigma be549b4
bad macro, bad macro.
kianenigma 8e97733
Master.into()
kianenigma d84dad4
Undo the DB mess.
kianenigma aeb7a0e
Update frame/support/src/traits.rs
kianenigma d968f58
Apply suggestions from code review
kianenigma ce4128b
unbreak the build
kianenigma ee8ae08
Merge branch 'kiz-finally-finally-finally-finally-migration-testing-2…
kianenigma 87baef8
Better logging and ids for migrations
kianenigma 01298eb
Fix doc.
kianenigma 14bf87f
Test
kianenigma 62be119
Master.into()
kianenigma 712c240
Update frame/try-runtime/src/lib.rs
kianenigma 9a23940
Update utils/frame/try-runtime/cli/Cargo.toml
kianenigma 93f299a
Update frame/try-runtime/Cargo.toml
kianenigma 3cea840
Address most review grumbles.
kianenigma ab9d4a3
Upstream.into()
kianenigma b13ea31
Fix build
kianenigma d3a2368
Add some comments
kianenigma c8ba546
Remove allowing one pallet at a time.
kianenigma 726f0b6
Merge branch 'kiz-finally-finally-finally-finally-migration-testing-2…
kianenigma ce123d1
Rework the PR
kianenigma 67eead2
nit
kianenigma a444530
Master.into()
kianenigma 511db92
Slightly better error handling.
kianenigma 96d8ecf
Remove files
kianenigma 1e41e0c
Update utils/frame/remote-externalities/src/lib.rs
kianenigma 2655290
Merge branch 'master' of github.com:paritytech/substrate into kiz-mig…
kianenigma 7ed0ecd
Update frame/support/src/dispatch.rs
kianenigma be547cb
Master.into
kianenigma 415bca9
Update frame/support/src/dispatch.rs
kianenigma bdad8a5
Fix test
kianenigma 2d6df71
Merge branch 'kiz-migration-testin-2' of github.com:paritytech/substr…
kianenigma 05a5daf
Merge branch 'master' of github.com:paritytech/substrate into kiz-mig…
kianenigma d6e7b8b
Make extension trait.
kianenigma 6714bfc
Bring back try-runtime/std
kianenigma d06d069
Merge branch 'master' of github.com:paritytech/substrate into kiz-mig…
kianenigma 4e154f0
remove bincode
kianenigma 280666f
Remove warning
kianenigma 6ff2845
Change test features
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 |
---|---|---|
|
@@ -23,3 +23,4 @@ rls*.log | |
**/hfuzz_workspace/ | ||
.cargo/ | ||
.cargo-remote.toml | ||
*.bin |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,3 +47,6 @@ std = [ | |
"sp-tracing/std", | ||
"sp-std/std", | ||
] | ||
try-runtime = [ | ||
"frame-support/try-runtime" | ||
] |
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.
yes this is needed because otherwise we can't compile node-runtime with try-runtime features and std :-/
the unused dependency on std should harm to much, and this is what we do for frame-benchmarking.