Type Alias ConsensusMembers

Source
pub type ConsensusMembers<T: Config> = StorageMap<_GeneratedPrefixForStorageConsensusMembers<T>, Identity, <T as Config>::AccountId, ConsensusMember<T>>;
Expand description

Map of consensus members indexed by their keys. A consensus member is any agent eligible for emissions in the next epoch. This means unregistered agents will also receive emissions.

Storage type is [StorageMap] with key type AccountIdOf < T > and value type ConsensusMember < T >.

Aliased Typeยง

struct ConsensusMembers<T: Config>(/* private fields */);