Skip to content

Commit

Permalink
[ParachainHost] adapt paritytech/polkadot-sdk#2177
Browse files Browse the repository at this point in the history
  • Loading branch information
bkontur committed Jan 10, 2024
1 parent dfef300 commit 889cb10
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
3 changes: 2 additions & 1 deletion relay/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1680,13 +1680,14 @@ pub type Migrations = migrations::Unreleased;
/// The runtime migrations per release.
#[allow(deprecated, missing_docs)]
pub mod migrations {
use super::Runtime;
use super::{Runtime, parachains_configuration};

/// Unreleased migrations. Add new ones here:
pub type Unreleased = (
pallet_nomination_pools::migration::versioned::V5toV6<Runtime>,
pallet_nomination_pools::migration::versioned::V6ToV7<Runtime>,
pallet_staking::migrations::v14::MigrateToV14<Runtime>,
parachains_configuration::migration::v10::MigrateToV10<Runtime>,
);
}

Expand Down
16 changes: 16 additions & 0 deletions relay/kusama/src/weights/runtime_parachains_configuration.rs

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

1 change: 1 addition & 0 deletions relay/polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1709,6 +1709,7 @@ pub mod migrations {
pallet_nomination_pools::migration::versioned::V5toV6<Runtime>,
pallet_nomination_pools::migration::versioned::V6ToV7<Runtime>,
pallet_staking::migrations::v14::MigrateToV14<Runtime>,
parachains_configuration::migration::v10::MigrateToV10<Runtime>,
);
}

Expand Down
16 changes: 16 additions & 0 deletions relay/polkadot/src/weights/runtime_parachains_configuration.rs

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

0 comments on commit 889cb10

Please sign in to comment.