Skip to content

Commit

Permalink
add pool migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Bulat committed Nov 30, 2023
1 parent 473498c commit b26e34f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion relay/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1627,7 +1627,9 @@ pub type Migrations = migrations::Unreleased;
#[allow(deprecated, missing_docs)]
pub mod migrations {
/// Unreleased migrations. Add new ones here:
pub type Unreleased = ();
pub type Unreleased = (
pallet_nomination_pools::migrations::versioned::V7ToV8<Runtime>
);
}

/// Unchecked extrinsic type as expected by this runtime.
Expand Down
4 changes: 3 additions & 1 deletion relay/polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,9 @@ pub mod migrations {
// Migrate parachain info format
paras_registrar::migration::VersionCheckedMigrateToV1<Runtime, ParachainsToUnlock>,

runtime_parachains::scheduler::migration::v1::MigrateToV1<Runtime>
runtime_parachains::scheduler::migration::v1::MigrateToV1<Runtime>,

pallet_nomination_pools::migrations::versioned::V7ToV8<Runtime>
);
}

Expand Down

0 comments on commit b26e34f

Please sign in to comment.