Skip to content

Commit

Permalink
Run missed migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrylavrenov committed Nov 8, 2024
1 parent af82022 commit 1ed81c4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions crates/humanode-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -920,13 +920,20 @@ pub type UncheckedExtrinsic =
/// The payload being signed in transactions.
pub type SignedPayload = generic::SignedPayload<RuntimeCall, SignedExtra>;

/// All migrations that will run on next runtime upgrade.
pub type Migrations = (
pallet_offences::migration::v1::MigrateToV1<Runtime>,
pallet_multisig::migrations::v1::MigrateToV1<Runtime>,
);

/// Executive: handles dispatch to the various modules.
pub type Executive = frame_executive::Executive<
Runtime,
Block,
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
Migrations,
>;

impl frame_system::offchain::CreateSignedTransaction<RuntimeCall> for Runtime {
Expand Down

0 comments on commit 1ed81c4

Please sign in to comment.