referrerpolicy=no-referrer-when-downgrade
pub trait BaseSubstrateEquivocationDetectionPipeline: SubstrateFinalityPipeline<SourceChain = Self::BoundedSourceChain> {
    type BoundedSourceChain: ChainWithTransactions<AccountId = Self::BoundedSourceChainAccountId>;
    type BoundedSourceChainAccountId: From<<AccountKeyPairOf<Self::BoundedSourceChain> as Pair>::Public> + Send;
}
Expand description

Convenience trait that adds bounds to SubstrateEquivocationDetectionPipeline.

Required Associated Types§

source

type BoundedSourceChain: ChainWithTransactions<AccountId = Self::BoundedSourceChainAccountId>

Bounded SubstrateFinalityPipeline::SourceChain.

source

type BoundedSourceChainAccountId: From<<AccountKeyPairOf<Self::BoundedSourceChain> as Pair>::Public> + Send

Bounded AccountIdOf<SubstrateFinalityPipeline::SourceChain>.

Object Safety§

This trait is not object safe.

Implementors§