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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
#![cfg_attr(rustfmt, rustfmt_skip)]
#![allow(unused_parens)]
#![allow(unused_imports)]
use frame_support::{traits::Get, weights::{Weight}};
use sp_std::marker::PhantomData;
pub struct WeightInfo<T>(PhantomData<T>);
impl<T: frame_system::Config> pallet_democracy::WeightInfo for WeightInfo<T> {
fn propose() -> Weight {
Weight::from_ref_time(39_849_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(31_560_000 as u64)
.saturating_add(Weight::from_ref_time(81_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(43_461_000 as u64)
.saturating_add(Weight::from_ref_time(91_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(43_754_000 as u64)
.saturating_add(Weight::from_ref_time(88_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(21_199_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(55_593_000 as u64)
.saturating_add(Weight::from_ref_time(161_000 as u64).saturating_mul(p as u64))
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(6 as u64))
}
fn external_propose(v: u32, ) -> Weight {
Weight::from_ref_time(14_747_000 as u64)
.saturating_add(Weight::from_ref_time(13_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(4_471_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn external_propose_default() -> Weight {
Weight::from_ref_time(4_230_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn fast_track() -> Weight {
Weight::from_ref_time(20_311_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(22_052_000 as u64)
.saturating_add(Weight::from_ref_time(26_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(46_926_000 as u64)
.saturating_add(Weight::from_ref_time(130_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(13_121_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn cancel_queued(r: u32, ) -> Weight {
Weight::from_ref_time(27_805_000 as u64)
.saturating_add(Weight::from_ref_time(1_112_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(9_815_000 as u64)
.saturating_add(Weight::from_ref_time(1_996_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(12_343_000 as u64)
.saturating_add(Weight::from_ref_time(2_001_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(47_307_000 as u64)
.saturating_add(Weight::from_ref_time(2_899_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(27_872_000 as u64)
.saturating_add(Weight::from_ref_time(2_861_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(5_014_000 as u64)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
fn note_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(29_213_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 note_imminent_preimage(b: u32, ) -> Weight {
Weight::from_ref_time(21_778_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(36_642_000 as u64)
.saturating_add(Weight::from_ref_time(1_000 as u64).saturating_mul(b as u64))
.saturating_add(T::DbWeight::get().reads(2 as u64))
.saturating_add(T::DbWeight::get().writes(2 as u64))
}
fn unlock_remove(r: u32, ) -> Weight {
Weight::from_ref_time(31_776_000 as u64)
.saturating_add(Weight::from_ref_time(37_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(31_414_000 as u64)
.saturating_add(Weight::from_ref_time(77_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(18_428_000 as u64)
.saturating_add(Weight::from_ref_time(84_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(18_684_000 as u64)
.saturating_add(Weight::from_ref_time(77_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))
}
}