10 lines
212 B
Rust
10 lines
212 B
Rust
pub mod v3;
|
|
|
|
pub type MigrateV2ToV3<T> = frame_support::migrations::VersionedMigration<
|
|
2,
|
|
3,
|
|
v3::CommitmentDetailsTypesChanged<T>,
|
|
crate::Pallet<T>,
|
|
<T as frame_system::Config>::DbWeight,
|
|
>;
|