pub trait ConsensusProvider {
// Required method
fn get_consensus(&self) -> &Consensus;
}
Expand description
Trait for consensus provider.
Required Methods§
Sourcefn get_consensus(&self) -> &Consensus
fn get_consensus(&self) -> &Consensus
Returns the Consensus
.