pub trait PriceForParachainDelivery {
// Required method
fn price_for_parachain_delivery(
para: ParaId,
message: &Xcm<()>
) -> MultiAssets;
}
Expand description
Simple value-bearing trait for determining/expressing the assets required to be paid for a messages to be delivered to a parachain.
Required Methods§
sourcefn price_for_parachain_delivery(para: ParaId, message: &Xcm<()>) -> MultiAssets
fn price_for_parachain_delivery(para: ParaId, message: &Xcm<()>) -> MultiAssets
Return the assets required to deliver message
to the given para
destination.