pub trait CommitteeMember {
type AuthorityId;
type AuthorityKeys;
// Required methods
fn authority_id(&self) -> Self::AuthorityId;
fn authority_keys(&self) -> Self::AuthorityKeys;
}
Expand description
Signifies that a type represents a committee member
Required Associated Types§
Sourcetype AuthorityId
type AuthorityId
Type representing authority id
Sourcetype AuthorityKeys
type AuthorityKeys
Type representing authority keys
Required Methods§
Returns authority id
Returns authority keys