referrerpolicy=no-referrer-when-downgrade
frame_support::traits

Trait ValidatorRegistration

Source
pub trait ValidatorRegistration<ValidatorId> {
    // Required method
    fn is_registered(id: &ValidatorId) -> bool;
}
Expand description

Implementors of this trait provide information about whether or not some validator has been registered with them. The Session module is an implementor.

Required Methods§

Source

fn is_registered(id: &ValidatorId) -> bool

Returns true if the provided validator ID has been registered with the implementing runtime module

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

impl<T: Config> ValidatorRegistration<<T as Config>::ValidatorId> for Pallet<T>