pub trait OnOutgoingMember<MemberId> {
    // Required method
    fn on_outgoing_member(member_id: MemberId);
}
Expand description

Handle the consequences of going out of authority set for other pallets. Typically, the smiths are not allowed to stay offline for a too long time.

Required Methods§

source

fn on_outgoing_member(member_id: MemberId)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<MemberId> OnOutgoingMember<MemberId> for ()

By default: no consequences

Implementors§