pub trait ReceiveMessagesDeliveryProofCallBuilder<P: SubstrateMessageLane> {
// Required method
fn build_receive_messages_delivery_proof_call(
proof: SubstrateMessagesDeliveryProof<P::TargetChain, P::LaneId>,
trace_call: bool,
) -> CallOf<P::SourceChain>;
}
Expand description
Different ways of building receive_messages_delivery_proof
calls.
Required Methods§
sourcefn build_receive_messages_delivery_proof_call(
proof: SubstrateMessagesDeliveryProof<P::TargetChain, P::LaneId>,
trace_call: bool,
) -> CallOf<P::SourceChain>
fn build_receive_messages_delivery_proof_call( proof: SubstrateMessagesDeliveryProof<P::TargetChain, P::LaneId>, trace_call: bool, ) -> CallOf<P::SourceChain>
Given messages delivery proof, build call of receive_messages_delivery_proof
function of
bridge messages module at the source chain.
Object Safety§
This trait is not object safe.