pub trait DisabledValidators {
// Required methods
fn is_disabled(index: u32) -> bool;
fn disabled_validators() -> Vec<u32>;
}
Expand description
Trait used to check whether a given validator is currently disabled and should not be participating in consensus (e.g. because they equivocated).
Required Methods§
Sourcefn is_disabled(index: u32) -> bool
fn is_disabled(index: u32) -> bool
Returns true if the given validator is disabled.
Sourcefn disabled_validators() -> Vec<u32>
fn disabled_validators() -> Vec<u32>
Returns all disabled validators
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.