@@ -20,6 +20,7 @@ serde = { workspace = true, optional = true }
20
20
static_assertions = { workspace = true }
21
21
22
22
sp-api = { workspace = true }
23
+ sp-arithmetic = { workspace = true }
23
24
sp-block-builder = { workspace = true }
24
25
sp-consensus-aura = { workspace = true }
25
26
sp-core = { workspace = true }
@@ -90,6 +91,7 @@ pallet-bridge = { workspace = true }
90
91
pallet-collator-allowlist = { workspace = true }
91
92
pallet-collator-selection = { workspace = true }
92
93
pallet-collective = { workspace = true }
94
+ pallet-conviction-voting = { workspace = true }
93
95
pallet-democracy = { workspace = true }
94
96
pallet-elections-phragmen = { workspace = true }
95
97
pallet-ethereum = { workspace = true }
@@ -117,6 +119,7 @@ pallet-pool-registry = { workspace = true }
117
119
pallet-pool-system = { workspace = true }
118
120
pallet-preimage = { workspace = true }
119
121
pallet-proxy = { workspace = true }
122
+ pallet-referenda = { workspace = true }
120
123
pallet-remarks = { workspace = true }
121
124
pallet-restricted-tokens = { workspace = true }
122
125
pallet-restricted-xtokens = { workspace = true }
@@ -133,6 +136,7 @@ pallet-treasury = { workspace = true }
133
136
pallet-uniques = { workspace = true }
134
137
pallet-utility = { workspace = true }
135
138
pallet-vesting = { workspace = true }
139
+ pallet-whitelist = { workspace = true }
136
140
pallet-xcm = { workspace = true }
137
141
pallet-xcm-transactor = { workspace = true }
138
142
parachain-info = { workspace = true }
@@ -150,9 +154,9 @@ std = [
150
154
" scale-info/std" ,
151
155
" serde/std" ,
152
156
" log/std" ,
153
-
154
157
# Substrate related
155
158
" sp-api/std" ,
159
+ " sp-arithmetic/std" ,
156
160
" sp-runtime/std" ,
157
161
" sp-block-builder/std" ,
158
162
" sp-consensus-aura/std" ,
@@ -187,14 +191,12 @@ std = [
187
191
" pallet-transaction-payment-rpc-runtime-api/std" ,
188
192
" polkadot-runtime-common/std" ,
189
193
" polkadot-parachain-primitives/std" ,
190
-
191
194
# Locals
192
195
" cfg-primitives/std" ,
193
196
" cfg-traits/std" ,
194
197
" cfg-types/std" ,
195
198
" runtime-common/std" ,
196
199
" liquidity-pools-gateway-routers/std" ,
197
-
198
200
# Pallet list
199
201
" axelar-gateway-precompile/std" ,
200
202
" chainbridge/std" ,
@@ -217,6 +219,7 @@ std = [
217
219
" pallet-collator-allowlist/std" ,
218
220
" pallet-collator-selection/std" ,
219
221
" pallet-collective/std" ,
222
+ " pallet-conviction-voting/std" ,
220
223
" pallet-democracy/std" ,
221
224
" pallet-elections-phragmen/std" ,
222
225
" pallet-ethereum/std" ,
@@ -244,6 +247,7 @@ std = [
244
247
" pallet-pool-system/std" ,
245
248
" pallet-preimage/std" ,
246
249
" pallet-proxy/std" ,
250
+ " pallet-referenda/std" ,
247
251
" pallet-remarks/std" ,
248
252
" pallet-restricted-tokens/std" ,
249
253
" pallet-restricted-xtokens/std" ,
@@ -260,6 +264,7 @@ std = [
260
264
" pallet-uniques/std" ,
261
265
" pallet-utility/std" ,
262
266
" pallet-vesting/std" ,
267
+ " pallet-whitelist/std" ,
263
268
" pallet-xcm/std" ,
264
269
" pallet-xcm-transactor/std" ,
265
270
" parachain-info/std" ,
@@ -270,7 +275,6 @@ runtime-benchmarks = [
270
275
" frame-system-benchmarking/runtime-benchmarks" ,
271
276
" frame-benchmarking/runtime-benchmarks" ,
272
277
" cumulus-pallet-session-benchmarking/runtime-benchmarks" ,
273
-
274
278
# Substrate related
275
279
" sp-runtime/runtime-benchmarks" ,
276
280
" sp-staking/runtime-benchmarks" ,
@@ -281,14 +285,12 @@ runtime-benchmarks = [
281
285
" xcm-primitives/runtime-benchmarks" ,
282
286
" polkadot-runtime-common/runtime-benchmarks" ,
283
287
" polkadot-parachain-primitives/runtime-benchmarks" ,
284
-
285
288
# Locals
286
289
" cfg-primitives/runtime-benchmarks" ,
287
290
" cfg-traits/runtime-benchmarks" ,
288
291
" cfg-types/runtime-benchmarks" ,
289
292
" runtime-common/runtime-benchmarks" ,
290
293
" liquidity-pools-gateway-routers/runtime-benchmarks" ,
291
-
292
294
# Pallet list
293
295
" axelar-gateway-precompile/runtime-benchmarks" ,
294
296
" chainbridge/runtime-benchmarks" ,
@@ -304,6 +306,7 @@ runtime-benchmarks = [
304
306
" pallet-collator-allowlist/runtime-benchmarks" ,
305
307
" pallet-collator-selection/runtime-benchmarks" ,
306
308
" pallet-collective/runtime-benchmarks" ,
309
+ " pallet-conviction-voting/runtime-benchmarks" ,
307
310
" pallet-democracy/runtime-benchmarks" ,
308
311
" pallet-elections-phragmen/runtime-benchmarks" ,
309
312
" pallet-ethereum/runtime-benchmarks" ,
@@ -330,6 +333,7 @@ runtime-benchmarks = [
330
333
" pallet-pool-system/runtime-benchmarks" ,
331
334
" pallet-preimage/runtime-benchmarks" ,
332
335
" pallet-proxy/runtime-benchmarks" ,
336
+ " pallet-referenda/runtime-benchmarks" ,
333
337
" pallet-remarks/runtime-benchmarks" ,
334
338
" pallet-restricted-tokens/runtime-benchmarks" ,
335
339
" pallet-restricted-xtokens/runtime-benchmarks" ,
@@ -344,29 +348,27 @@ runtime-benchmarks = [
344
348
" pallet-uniques/runtime-benchmarks" ,
345
349
" pallet-utility/runtime-benchmarks" ,
346
350
" pallet-vesting/runtime-benchmarks" ,
351
+ " pallet-whitelist/runtime-benchmarks" ,
347
352
" pallet-xcm/runtime-benchmarks" ,
348
353
" pallet-xcm-transactor/runtime-benchmarks" ,
349
354
]
350
355
351
356
try-runtime = [
352
357
# Enabling optional
353
358
" frame-try-runtime/try-runtime" ,
354
-
355
359
# Substrate related
356
360
" sp-runtime/try-runtime" ,
357
361
" frame-support/try-runtime" ,
358
362
" frame-system/try-runtime" ,
359
363
" frame-executive/try-runtime" ,
360
364
" fp-self-contained/try-runtime" ,
361
365
" polkadot-runtime-common/try-runtime" ,
362
-
363
366
# Locals
364
367
" cfg-primitives/try-runtime" ,
365
368
" cfg-traits/try-runtime" ,
366
369
" cfg-types/try-runtime" ,
367
370
" runtime-common/try-runtime" ,
368
371
" liquidity-pools-gateway-routers/try-runtime" ,
369
-
370
372
# Pallet list
371
373
" axelar-gateway-precompile/try-runtime" ,
372
374
" chainbridge/try-runtime" ,
@@ -389,6 +391,7 @@ try-runtime = [
389
391
" pallet-collator-allowlist/try-runtime" ,
390
392
" pallet-collator-selection/try-runtime" ,
391
393
" pallet-collective/try-runtime" ,
394
+ " pallet-conviction-voting/try-runtime" ,
392
395
" pallet-democracy/try-runtime" ,
393
396
" pallet-elections-phragmen/try-runtime" ,
394
397
" pallet-ethereum/try-runtime" ,
@@ -416,6 +419,7 @@ try-runtime = [
416
419
" pallet-pool-system/try-runtime" ,
417
420
" pallet-preimage/try-runtime" ,
418
421
" pallet-proxy/try-runtime" ,
422
+ " pallet-referenda/try-runtime" ,
419
423
" pallet-remarks/try-runtime" ,
420
424
" pallet-restricted-tokens/try-runtime" ,
421
425
" pallet-restricted-xtokens/try-runtime" ,
@@ -432,6 +436,7 @@ try-runtime = [
432
436
" pallet-uniques/try-runtime" ,
433
437
" pallet-utility/try-runtime" ,
434
438
" pallet-vesting/try-runtime" ,
439
+ " pallet-whitelist/try-runtime" ,
435
440
" pallet-xcm/try-runtime" ,
436
441
" pallet-xcm-transactor/try-runtime" ,
437
442
" parachain-info/try-runtime" ,
0 commit comments