Skip to content

Commit

Permalink
add collator-selection migration
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Apr 4, 2024
1 parent bafbf71 commit 7414cc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions runtime/altair/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ pub type UpgradeAltair1035 = (
runtime_common::migrations::increase_storage_version::Migration<OraclePriceCollection, 0, 1>,
runtime_common::migrations::increase_storage_version::Migration<OrderBook, 0, 1>,
runtime_common::migrations::increase_storage_version::Migration<ForeignInvestments, 0, 1>,
pallet_collator_selection::migration::v1::MigrateToV1<crate::Runtime>,
);
1 change: 1 addition & 0 deletions runtime/centrifuge/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ use crate::{OraclePriceCollection, OraclePriceFeed};
pub type UpgradeCentrifuge1029 = (
runtime_common::migrations::increase_storage_version::Migration<OraclePriceFeed, 0, 1>,
runtime_common::migrations::increase_storage_version::Migration<OraclePriceCollection, 0, 1>,
pallet_collator_selection::migration::v1::MigrateToV1<crate::Runtime>,
);
3 changes: 2 additions & 1 deletion runtime/development/src/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@

/// The migration set for Development & Demo.
/// It includes all the migrations that have to be applied on that chain.
pub type UpgradeDevelopment1046 = ();
pub type UpgradeDevelopment1046 =
pallet_collator_selection::migration::v1::MigrateToV1<crate::Runtime>;

0 comments on commit 7414cc0

Please sign in to comment.