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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#![allow(unused_parens)]
#![allow(unused_imports)]
#![allow(clippy::unnecessary_cast)]
use frame_support::{
traits::Get,
weights::{constants::RocksDbWeight, Weight},
};
use sp_std::marker::PhantomData;
use pallet_democracy::weights::WeightInfo;
pub struct BasiliskWeight<T>(PhantomData<T>);
impl<T: frame_system::Config> WeightInfo for BasiliskWeight<T> {
fn propose() -> Weight {
Weight::from_ref_time(69_633_000 as u64)
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn second(s: u32) -> Weight {
Weight::from_ref_time(48_847_000 as u64) .saturating_add(Weight::from_ref_time(135_000 as u64).saturating_mul(s as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn vote_new(r: u32) -> Weight {
Weight::from_ref_time(62_363_000 as u64) .saturating_add(Weight::from_ref_time(202_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn vote_existing(r: u32) -> Weight {
Weight::from_ref_time(62_176_000 as u64) .saturating_add(Weight::from_ref_time(204_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn emergency_cancel() -> Weight {
Weight::from_ref_time(32_562_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
fn blacklist(p: u32) -> Weight {
Weight::from_ref_time(62_035_000 as u64) .saturating_add(Weight::from_ref_time(625_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
fn external_propose(v: u32) -> Weight {
Weight::from_ref_time(21_317_000 as u64) .saturating_add(Weight::from_ref_time(29_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn external_propose_majority() -> Weight {
Weight::from_ref_time(8_930_000 as u64).saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn external_propose_default() -> Weight {
Weight::from_ref_time(8_679_000 as u64).saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn fast_track() -> Weight {
Weight::from_ref_time(31_951_000 as u64)
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn veto_external(v: u32) -> Weight {
Weight::from_ref_time(33_419_000 as u64) .saturating_add(Weight::from_ref_time(41_000 as u64).saturating_mul(v as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
fn cancel_proposal(p: u32) -> Weight {
Weight::from_ref_time(69_673_000 as u64) .saturating_add(Weight::from_ref_time(293_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn cancel_referendum() -> Weight {
Weight::from_ref_time(23_219_000 as u64).saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn cancel_queued(r: u32) -> Weight {
Weight::from_ref_time(36_915_000 as u64) .saturating_add(Weight::from_ref_time(1_957_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
fn on_initialize_base(r: u32) -> Weight {
Weight::from_ref_time(12_788_000 as u64) .saturating_add(Weight::from_ref_time(2_924_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn on_initialize_base_with_launch_period(r: u32) -> Weight {
Weight::from_ref_time(17_514_000 as u64) .saturating_add(Weight::from_ref_time(2_921_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn delegate(r: u32) -> Weight {
Weight::from_ref_time(68_145_000 as u64) .saturating_add(Weight::from_ref_time(4_348_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(4 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
}
fn undelegate(r: u32) -> Weight {
Weight::from_ref_time(40_807_000 as u64) .saturating_add(Weight::from_ref_time(4_340_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(r as u64)))
.saturating_add(T::DbWeight::get().writes(2 as u64))
.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(r as u64)))
}
fn clear_public_proposals() -> Weight {
Weight::from_ref_time(10_668_000 as u64).saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn note_preimage(b: u32) -> Weight {
Weight::from_ref_time(36_858_000 as u64) .saturating_add(Weight::from_ref_time(3_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn note_imminent_preimage(b: u32) -> Weight {
Weight::from_ref_time(34_379_000 as u64) .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn reap_preimage(b: u32) -> Weight {
Weight::from_ref_time(44_966_000 as u64) .saturating_add(Weight::from_ref_time(2_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn unlock_remove(r: u32) -> Weight {
Weight::from_ref_time(46_275_000 as u64) .saturating_add(Weight::from_ref_time(120_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn unlock_set(r: u32) -> Weight {
Weight::from_ref_time(45_410_000 as u64) .saturating_add(Weight::from_ref_time(167_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(3 as u64))
.saturating_add(T::DbWeight::get().writes(3 as u64))
}
fn remove_vote(r: u32) -> Weight {
Weight::from_ref_time(26_668_000 as u64) .saturating_add(Weight::from_ref_time(151_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
fn remove_other_vote(r: u32) -> Weight {
Weight::from_ref_time(26_386_000 as u64) .saturating_add(Weight::from_ref_time(159_000 as u64).saturating_mul(r as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
}