pallet-conviction-voting: make the pallet instantiable (#11088)

* pallet-conviction-voting: make the pallet instanceable

Signed-off-by: koushiro <koushiro.cqx@gmail.com>

* Add default type param for some type alias

Signed-off-by: koushiro <koushiro.cqx@gmail.com>
This commit is contained in:
Qinxuan Chen
2022-03-25 21:45:01 +08:00
committed by GitHub
parent a95dbedee6
commit 52967f17de
4 changed files with 109 additions and 90 deletions
@@ -19,8 +19,6 @@
use std::collections::BTreeMap;
use super::*;
use crate as pallet_conviction_voting;
use frame_support::{
assert_noop, assert_ok, parameter_types,
traits::{ConstU32, ConstU64, Contains, Polling},
@@ -31,6 +29,9 @@ use sp_runtime::{
traits::{BlakeTwo256, IdentityLookup},
};
use super::*;
use crate as pallet_conviction_voting;
type UncheckedExtrinsic = frame_system::mocking::MockUncheckedExtrinsic<Test>;
type Block = frame_system::mocking::MockBlock<Test>;