referrerpolicy=no-referrer-when-downgrade
pub trait SubstrateFinalityPipeline: 'static + Clone + Debug + Send + Sync {
    type SourceChain: Chain;
    type TargetChain: Chain;
    type FinalityEngine: Engine<Self::SourceChain>;
}
Expand description

Substrate -> Substrate finality related pipeline.

Required Associated Types§

source

type SourceChain: Chain

Headers of this chain are submitted to the TargetChain.

source

type TargetChain: Chain

Headers of the SourceChain are submitted to this chain.

source

type FinalityEngine: Engine<Self::SourceChain>

Finality engine.

Object Safety§

This trait is not object safe.

Implementors§