pub trait InitializeMembers<AccountId> {
    fn initialize_members(members: &[AccountId]);
}
Expand description

Trait for type that can handle the initialization of account IDs at genesis.

Required Methods§

Initialize the members to the given members.

Implementations on Foreign Types§

Implementors§

impl<T: Config<I>, I: 'static> InitializeMembers<<T as Config>::AccountId> for Pallet<T, I>