pub trait WeightToFeeConverter {
    // Required method
    fn convert_weight_to_fee(
        location: &MultiLocation,
        weight: Weight
    ) -> Option<u128>;
}

Required Methods§

Implementors§