mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
Introduce migrations for inactive balances (#1943)
* Introduce migrations * Introduce migrations * Bump Co-authored-by: joepetrowski <joe@parity.io>
This commit is contained in:
@@ -550,6 +550,7 @@ pub type UncheckedExtrinsic =
|
||||
generic::UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;
|
||||
/// Extrinsic type that has already been checked.
|
||||
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
|
||||
|
||||
/// Executive: handles dispatch to the various modules.
|
||||
pub type Executive = frame_executive::Executive<
|
||||
Runtime,
|
||||
@@ -562,7 +563,10 @@ pub type Executive = frame_executive::Executive<
|
||||
|
||||
// All migrations executed on runtime upgrade as a nested tuple of types implementing `OnRuntimeUpgrade`.
|
||||
// Included migrations must be idempotent.
|
||||
type Migrations = (pallet_alliance::migration::Migration<Runtime>,);
|
||||
type Migrations = (
|
||||
pallet_alliance::migration::Migration<Runtime>,
|
||||
pallet_balances::migration::MigrateToTrackInactive<Runtime, xcm_config::CheckingAccount>,
|
||||
);
|
||||
|
||||
#[cfg(feature = "runtime-benchmarks")]
|
||||
#[macro_use]
|
||||
|
||||
Reference in New Issue
Block a user