pub trait ConsensusLogReader {
// Required method
fn schedules_authorities_change(digest: &Digest) -> bool;
}
Expand description
A trait that provides helper methods for querying the consensus log.
Required Methods§
Returns true if digest contains item that schedules authorities set change.
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.