1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use common::weights::constants::EXTRINSIC_FIXED_WEIGHT;
use frame_support::dispatch::Weight;

pub trait WeightInfo {
    fn burn() -> Weight;
    fn mint() -> Weight;
    fn register_network() -> Weight;
    fn register_network_with_existing_asset() -> Weight;
}

impl WeightInfo for () {
    fn burn() -> Weight {
        EXTRINSIC_FIXED_WEIGHT
    }
    fn mint() -> Weight {
        EXTRINSIC_FIXED_WEIGHT
    }
    fn register_network() -> Weight {
        EXTRINSIC_FIXED_WEIGHT
    }
    fn register_network_with_existing_asset() -> Weight {
        EXTRINSIC_FIXED_WEIGHT
    }
}