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§
sourcetype BoundedSourceChain: ChainWithTransactions<AccountId = Self::BoundedSourceChainAccountId>
type BoundedSourceChain: ChainWithTransactions<AccountId = Self::BoundedSourceChainAccountId>
Bounded SubstrateFinalityPipeline::SourceChain
.
sourcetype BoundedSourceChainAccountId: From<<AccountKeyPairOf<Self::BoundedSourceChain> as Pair>::Public> + Send
type BoundedSourceChainAccountId: From<<AccountKeyPairOf<Self::BoundedSourceChain> as Pair>::Public> + Send
Bounded AccountIdOf<SubstrateFinalityPipeline::SourceChain>
.
Object Safety§
This trait is not object safe.