diff --git a/crates/humanode-runtime/src/lib.rs b/crates/humanode-runtime/src/lib.rs index 4c345876b..8107c1f58 100644 --- a/crates/humanode-runtime/src/lib.rs +++ b/crates/humanode-runtime/src/lib.rs @@ -920,6 +920,12 @@ pub type UncheckedExtrinsic = /// The payload being signed in transactions. pub type SignedPayload = generic::SignedPayload; +/// All migrations that will run on next runtime upgrade. +pub type Migrations = ( + pallet_offences::migration::v1::MigrateToV1, + pallet_multisig::migrations::v1::MigrateToV1, +); + /// Executive: handles dispatch to the various modules. pub type Executive = frame_executive::Executive< Runtime, @@ -927,6 +933,7 @@ pub type Executive = frame_executive::Executive< frame_system::ChainContext, Runtime, AllPalletsWithSystem, + Migrations, >; impl frame_system::offchain::CreateSignedTransaction for Runtime {