pub trait GetValidatorCount {
    // Required method
    fn validator_count(&self) -> ValidatorCount;
}
Expand description

A utility trait to get the validator count of a given session. This is implemented for MembershipProof below and fetches the number of validators in the session the membership proof is for. It is useful when we need to deal with key owner proofs generically (i.e. just typing against the KeyOwnerProofSystem trait) but still restrict their capabilities.

Required Methods§

Implementations on Foreign Types§

source§

impl GetValidatorCount for Void

Implementors§