Trait frame_support::traits::ValidatorSetWithIdentification[][src]

pub trait ValidatorSetWithIdentification<AccountId>: ValidatorSet<AccountId> {
    type Identification: Parameter;
    type IdentificationOf: Convert<Self::ValidatorId, Option<Self::Identification>>;
}
Expand description

ValidatorSet combined with an identification.

Associated Types

Full identification of ValidatorId.

A type for converting ValidatorId to Identification.

Implementors