forked from ghostchain/ghost-node
10 lines
212 B
Rust
10 lines
212 B
Rust
pub mod v1;
|
|
|
|
pub type MigrateV0ToV1<T> = frame_support::migrations::VersionedMigration<
|
|
0,
|
|
1,
|
|
v1::StoreNetworkIdsIntoBoundedVec<T>,
|
|
crate::Pallet<T>,
|
|
<T as frame_system::Config>::DbWeight,
|
|
>;
|