pub type NoFee<T> = FixedFee<0, T>;
Expand description
An implementation of WeightToFee
that collects no fee.
Aliased Type§
struct NoFee<T>(/* private fields */);
Trait Implementations
Source§impl<const F: u32, T> WeightToFee for FixedFee<F, T>
impl<const F: u32, T> WeightToFee for FixedFee<F, T>
Source§fn weight_to_fee(_: &Weight) -> <FixedFee<F, T> as WeightToFee>::Balance
fn weight_to_fee(_: &Weight) -> <FixedFee<F, T> as WeightToFee>::Balance
Calculates the fee from the passed
weight
.