pub trait BoundedConfig: Config {
    type VotersBound: Get<u32>;
    type TargetsBound: Get<u32>;
}

Required Associated Types§

Bounds the number of voters.

Bounds the number of targets.

Implementors§