1
2
3
4
5
6
7
8
9
10
11
12
// --- paritytech ---
use frame_support::weights::Weight;
// --- darwinia-network ---
use crate::*;

pub fn pre_migrate<T: Config>() -> Result<(), &'static str> {
	Ok(())
}

pub fn migrate<T: Config>() -> Weight {
	0
}