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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#![allow(unused_parens)]
#![allow(unused_imports)]
use frame_support::{
traits::Get,
weights::{constants::RocksDbWeight, RuntimeDbWeight, Weight},
};
use sp_std::marker::PhantomData;
pub trait WeightInfo {
fn migrate() -> Weight;
fn migrate_validation_failure() -> Weight;
}
pub struct SubstrateWeight<W>(PhantomData<W>);
impl<W: Get<RuntimeDbWeight>> WeightInfo for SubstrateWeight<W> {
fn migrate() -> Weight {
Weight::from_ref_time(20_000_000)
.saturating_add(W::get().reads(1))
.saturating_add(W::get().writes(1))
}
fn migrate_validation_failure() -> Weight {
Weight::from_ref_time(3_000_000)
}
}
impl WeightInfo for () {
fn migrate() -> Weight {
Weight::from_ref_time(20_000_000)
.saturating_add(RocksDbWeight::get().reads(1))
.saturating_add(RocksDbWeight::get().writes(1))
}
fn migrate_validation_failure() -> Weight {
Weight::from_ref_time(3_000_000)
}
}