1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use frame_support::weights::Weight;

pub trait WeightInfo {
    fn import_header() -> Weight;
    fn import_header_not_new_finalized_with_max_prune() -> Weight;
    fn import_header_new_finalized_with_single_prune() -> Weight;
    fn import_header_not_new_finalized_with_single_prune() -> Weight;
    fn register_network() -> Weight;
    fn update_difficulty_config() -> Weight;
}

impl WeightInfo for () {
    fn import_header() -> Weight {
        Weight::zero()
    }
    fn import_header_not_new_finalized_with_max_prune() -> Weight {
        Weight::zero()
    }
    fn import_header_new_finalized_with_single_prune() -> Weight {
        Weight::zero()
    }
    fn import_header_not_new_finalized_with_single_prune() -> Weight {
        Weight::zero()
    }
    fn register_network() -> Weight {
        Weight::zero()
    }
    fn update_difficulty_config() -> Weight {
        Weight::zero()
    }
}