referrerpolicy=no-referrer-when-downgrade
pub trait EquivocationDetectionPipeline: FinalityPipeline {
    type TargetNumber: BlockNumberBase;
    type FinalityVerificationContext: Debug + Send;
    type EquivocationProof: Clone + Debug + Send + Sync;
    type EquivocationsFinder: FindEquivocations<Self::FinalityProof, Self::FinalityVerificationContext, Self::EquivocationProof>;
}

Required Associated Types§

source

type TargetNumber: BlockNumberBase

Block number of the target chain.

source

type FinalityVerificationContext: Debug + Send

The context needed for validating finality proofs.

source

type EquivocationProof: Clone + Debug + Send + Sync

The type of the equivocation proof.

source

type EquivocationsFinder: FindEquivocations<Self::FinalityProof, Self::FinalityVerificationContext, Self::EquivocationProof>

The equivocations finder.

Object Safety§

This trait is not object safe.

Implementors§