pub trait V2ToV3 {
    type Pallet: 'static + PalletInfoAccess;
    type AccountId: 'static + FullCodec;
    type Nonce: 'static + FullCodec + Copy;
    type AccountData: 'static + FullCodec;
}
Expand description

Trait to implement to give information about types used for migration

Required Associated Types§

source

type Pallet: 'static + PalletInfoAccess

The system pallet.

source

type AccountId: 'static + FullCodec

System config account id

source

type Nonce: 'static + FullCodec + Copy

System config nonce

source

type AccountData: 'static + FullCodec

System config account data

Implementors§