pub trait FeeCalculator {
    // Required method
    fn min_gas_price() -> (U256, Weight);
}
Expand description

Trait that outputs the current transaction gas price.

Required Methods§

fn min_gas_price() -> (U256, Weight)

Return the minimal required gas price.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

§

impl FeeCalculator for ()

§

fn min_gas_price() -> (U256, Weight)

Implementors§