referrerpolicy=no-referrer-when-downgrade
pub trait EquivocationsDetector: RelayToRelayEquivocationDetectionCliBridge{
    // Provided method
    fn start<'async_trait>(
        data: DetectEquivocationsParams,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: Send + 'async_trait { ... }
}
Expand description

Trait used for starting the equivocation detection loop between 2 chains.

Provided Methods§

source

fn start<'async_trait>( data: DetectEquivocationsParams, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: Send + 'async_trait,

Start the equivocation detection loop.

Object Safety§

This trait is not object safe.

Implementors§