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

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§