pub trait BannedValidators {
    type AccountId;

    // Required method
    fn banned() -> Vec<Self::AccountId>;
}

Required Associated Types§

Required Methods§

source

fn banned() -> Vec<Self::AccountId>

returns currently banned validators

Object Safety§

This trait is not object safe.

Implementors§