pub trait ReportEquivocationCallBuilder<P: SubstrateEquivocationDetectionPipeline> {
// Required method
fn build_report_equivocation_call(
equivocation_proof: EquivocationProofOf<P>,
key_owner_proof: KeyOwnerProofOf<P>,
) -> CallOf<P::SourceChain>;
}
Expand description
Different ways of building report_equivocation
calls.
Required Methods§
sourcefn build_report_equivocation_call(
equivocation_proof: EquivocationProofOf<P>,
key_owner_proof: KeyOwnerProofOf<P>,
) -> CallOf<P::SourceChain>
fn build_report_equivocation_call( equivocation_proof: EquivocationProofOf<P>, key_owner_proof: KeyOwnerProofOf<P>, ) -> CallOf<P::SourceChain>
Build a report_equivocation
call to be executed on the source chain.
Object Safety§
This trait is not object safe.