pub trait OnNewValidatorSet<AuthorityId> {
    fn on_new_validator_set(
        validator_set: &ValidatorSet<AuthorityId>,
        next_validator_set: &ValidatorSet<AuthorityId>
    ); }
Expand description

New BEEFY validator set notification hook.

Required Methods§

Function called by the pallet when BEEFY validator set changes.

Implementations on Foreign Types§

No-op implementation of OnNewValidatorSet.

Implementors§