pub trait ValidatorExtractor {
    type AccountId;
    // Required method
    fn remove_validator(who: &Self::AccountId);
}Required Associated Types§
Required Methods§
sourcefn remove_validator(who: &Self::AccountId)
 
fn remove_validator(who: &Self::AccountId)
Removes given validator from pallet’s staking validators list
Object Safety§
This trait is not object safe.