Skip to content
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

Storage Version Migration #3220

Merged
merged 33 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b3f5509
feat: add paseo migration
wangminqi Dec 26, 2024
ff541fd
Merge branch 'dev' into p-1245-manul-migration-based-on-storage-version
wangminqi Dec 26, 2024
c40b447
chore: fix
wangminqi Dec 26, 2024
2967bf7
Merge branch 'dev' into p-1245-manul-migration-based-on-storage-version
wangminqi Dec 26, 2024
d70657a
chore: fix
wangminqi Dec 26, 2024
9834af8
Merge branch 'p-1245-manul-migration-based-on-storage-version' of htt…
wangminqi Dec 26, 2024
a89868d
chore: fix
wangminqi Dec 27, 2024
569742f
chore: fix
wangminqi Dec 27, 2024
17208cb
chore: fix
wangminqi Dec 27, 2024
43ac264
chore: fix
wangminqi Dec 28, 2024
d91689b
chore: fix clippy
wangminqi Dec 28, 2024
32a57b3
chore: fix
wangminqi Dec 28, 2024
963a2a4
chore: fix
wangminqi Dec 28, 2024
b0f8e73
feat: add all migrations
wangminqi Dec 29, 2024
d316122
chore: fix
wangminqi Dec 29, 2024
9655922
chore: fix
wangminqi Dec 29, 2024
8be0f13
chore: fix
wangminqi Dec 29, 2024
a7230bb
chore: fix
wangminqi Dec 29, 2024
7776751
chore: fix
wangminqi Jan 2, 2025
95ea03a
Merge branch 'dev' into p-1245-manul-migration-based-on-storage-version
wangminqi Jan 2, 2025
5a12c3a
chore: fix
wangminqi Jan 2, 2025
a8933f1
Merge branch 'p-1245-manul-migration-based-on-storage-version' of htt…
wangminqi Jan 2, 2025
13fd353
chore: fix
wangminqi Jan 2, 2025
a0c104f
chore: clippy
wangminqi Jan 2, 2025
093c82e
chore: add preimage clean
wangminqi Jan 3, 2025
8fd12b0
chore: fix
wangminqi Jan 3, 2025
8983ba4
chore: fix
wangminqi Jan 3, 2025
db6b60e
chore: fix
wangminqi Jan 3, 2025
11fb7d1
chore: fix
wangminqi Jan 3, 2025
6ed3089
chore: fix clippy
wangminqi Jan 3, 2025
a975e7d
chore: fix
wangminqi Jan 3, 2025
68a4299
chore: fix
wangminqi Jan 3, 2025
f69079a
Merge branch 'dev' into p-1245-manul-migration-based-on-storage-version
BillyWooo Jan 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions parachain/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions parachain/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ xcm = { workspace = true }
frame-benchmarking = { workspace = true }
frame-benchmarking-cli = { workspace = true }
frame-system-rpc-runtime-api = { workspace = true }
frame-try-runtime = { workspace = true, optional = true }

core-primitives = { workspace = true, features = ["std"] }
litentry-parachain-runtime = { workspace = true, features = ["std"] }
Expand Down Expand Up @@ -148,5 +149,6 @@ try-runtime = [
"polkadot-service/try-runtime",
"runtime-common/try-runtime",
"sp-runtime/try-runtime",
"frame-try-runtime",
]
std = []
1 change: 0 additions & 1 deletion parachain/runtime/litentry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,6 @@ try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
"frame-try-runtime",
"frame-try-runtime?/try-runtime",
"hex",
"pallet-account-fix/try-runtime",
"pallet-asset-manager/try-runtime",
Expand Down
2 changes: 2 additions & 0 deletions parachain/runtime/litentry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ pub mod asset_config;
pub mod constants;
pub mod precompiles;

pub mod migration;
pub mod weights;
pub mod xcm_config;

Expand Down Expand Up @@ -156,6 +157,7 @@ pub type Executive = frame_executive::Executive<
// It was reverse order before.
// See the comment before collation related pallets too.
AllPalletsWithSystem,
migration::Migrations<Runtime>,
>;

impl fp_self_contained::SelfContainedCall for RuntimeCall {
Expand Down
Loading