diff --git a/Cargo.lock b/Cargo.lock index 10512f1ab..e0d9acee8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -123,6 +123,7 @@ dependencies = [ "pallet-proxy", "pallet-scheduler", "pallet-session", + "pallet-state-trie-migration", "pallet-sudo", "pallet-timestamp", "pallet-tips", @@ -2921,7 +2922,6 @@ dependencies = [ "pallet-proxy", "pallet-scheduler", "pallet-session", - "pallet-state-trie-migration", "pallet-sudo", "pallet-timestamp", "pallet-tips", diff --git a/runtime/karura/src/lib.rs b/runtime/karura/src/lib.rs index 61232df53..897130f87 100644 --- a/runtime/karura/src/lib.rs +++ b/runtime/karura/src/lib.rs @@ -1993,8 +1993,12 @@ pub type Executive = frame_executive::Executive< Migrations, >; +parameter_types! { + pub const StateTrieMigrationName: &'static str = "StateTrieMigration"; +} + #[allow(unused_parens)] -type Migrations = (); +type Migrations = (frame_support::migrations::RemovePallet); #[cfg(feature = "runtime-benchmarks")] #[macro_use]