Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest committed Feb 6, 2023
1 parent 1c94d4b commit 77ecbd4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions runtime/crab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,14 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
Migrations,
>;

type Migrations = (
// pallet_balances::migration::MigrateToTrackInactive<Runtime, CheckingAccount>,
pallet_assets::migration::v1::MigrateToV1<Runtime>,
);

/// Darwinia proposal base fee.
pub const DARWINIA_PROPOSAL_REQUIREMENT: Balance = 5000 * UNIT;

Expand Down
6 changes: 6 additions & 0 deletions runtime/darwinia/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,14 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
Migrations,
>;

type Migrations = (
// pallet_balances::migration::MigrateToTrackInactive<Runtime, CheckingAccount>,
pallet_assets::migration::v1::MigrateToV1<Runtime>,
);

/// Darwinia proposal base fee.
pub const DARWINIA_PROPOSAL_REQUIREMENT: Balance = 5000 * UNIT;

Expand Down
6 changes: 6 additions & 0 deletions runtime/pangolin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,14 @@ pub type Executive = frame_executive::Executive<
frame_system::ChainContext<Runtime>,
Runtime,
AllPalletsWithSystem,
Migrations,
>;

type Migrations = (
// pallet_balances::migration::MigrateToTrackInactive<Runtime, CheckingAccount>,
pallet_assets::migration::v1::MigrateToV1<Runtime>,
);

/// Darwinia proposal base fee.
pub const DARWINIA_PROPOSAL_REQUIREMENT: Balance = 5000 * UNIT;

Expand Down

0 comments on commit 77ecbd4

Please sign in to comment.