From 082d368b56f10bffdade1b87277169ede8f37128 Mon Sep 17 00:00:00 2001 From: Maksim Ramanenkau Date: Wed, 21 Jun 2023 11:07:55 +0200 Subject: [PATCH] Apply migrations --- runtime/cere-dev/src/lib.rs | 2 +- runtime/cere/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/cere-dev/src/lib.rs b/runtime/cere-dev/src/lib.rs index 3faa96099..987886bca 100644 --- a/runtime/cere-dev/src/lib.rs +++ b/runtime/cere-dev/src/lib.rs @@ -1364,7 +1364,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (), + pallet_staking::migrations::v10::MigrateToV10, >; #[cfg(feature = "runtime-benchmarks")] diff --git a/runtime/cere/src/lib.rs b/runtime/cere/src/lib.rs index 6f1293e75..5eca496f6 100644 --- a/runtime/cere/src/lib.rs +++ b/runtime/cere/src/lib.rs @@ -1347,7 +1347,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, - (), + pallet_staking::migrations::v10::MigrateToV10, >; #[cfg(feature = "runtime-benchmarks")]