Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
fix migration
  • Loading branch information
gui1117 committed Aug 2, 2021
commit 161b4b32ff9ff548e11670034777fde3cc12996b
8 changes: 6 additions & 2 deletions runtime/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1527,9 +1527,13 @@ pub type Executive = frame_executive::Executive<
AllPallets,
(
RemoveCollectiveFlip,
MigratePalletVersionToStorageVersion,
// Needs to be before pallet version to storage version migration because it look into the
// storage version to determine if it is already up to date.
CouncilStoragePrefixMigration,
TechnicalCommitteeStoragePrefixMigration
// Needs to be before pallet version to storage version migration because it look into the
// storage version to determine if it is already up to date.
TechnicalCommitteeStoragePrefixMigration,
MigratePalletVersionToStorageVersion,
),
>;
/// The payload being signed in the transactions.
Expand Down
6 changes: 5 additions & 1 deletion runtime/polkadot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1090,9 +1090,13 @@ pub type Executive = frame_executive::Executive<
AllPallets,
(
RemoveCollectiveFlip,
MigratePalletVersionToStorageVersion,
// Needs to be before pallet version to storage version migration because it look into the
// storage version to determine if it is already up to date.
CouncilStoragePrefixMigration,
// Needs to be before pallet version to storage version migration because it look into the
// storage version to determine if it is already up to date.
TechnicalCommitteeStoragePrefixMigration,
MigratePalletVersionToStorageVersion,
),
>;
/// The payload being signed in transactions.
Expand Down