diff --git a/runtime/kusama/src/lib.rs b/runtime/kusama/src/lib.rs index 8babb276b72c..9d50297a2524 100644 --- a/runtime/kusama/src/lib.rs +++ b/runtime/kusama/src/lib.rs @@ -1493,6 +1493,7 @@ pub type Migrations = ( // this release they will be properly pruned after the bonding duration has // elapsed) pallet_grandpa::migrations::CleanupSetIdSessionMap, + pallet_nomination_pools::migration::v4::MigrateToV4, ); /// Unchecked extrinsic type as expected by this runtime. diff --git a/runtime/polkadot/src/lib.rs b/runtime/polkadot/src/lib.rs index cddd0b0453b5..698e26d0e04e 100644 --- a/runtime/polkadot/src/lib.rs +++ b/runtime/polkadot/src/lib.rs @@ -1613,6 +1613,7 @@ pub type Migrations = ( // this release they will be properly pruned after the bonding duration has // elapsed) pallet_grandpa::migrations::CleanupSetIdSessionMap, + pallet_nomination_pools::migration::v4::MigrateToV4, ); /// Unchecked extrinsic type as expected by this runtime. diff --git a/runtime/westend/src/lib.rs b/runtime/westend/src/lib.rs index d17907bc2683..4d11f8905370 100644 --- a/runtime/westend/src/lib.rs +++ b/runtime/westend/src/lib.rs @@ -1251,6 +1251,7 @@ pub type Migrations = ( // this release they will be properly pruned after the bonding duration has // elapsed) pallet_grandpa::migrations::CleanupSetIdSessionMap, + pallet_nomination_pools::migration::v4::MigrateToV4, ); /// Unchecked extrinsic type as expected by this runtime.