Trait pallet_transaction_payment::MultiplierUpdate [−][src]
pub trait MultiplierUpdate: Convert<Multiplier, Multiplier> { fn min() -> Multiplier; fn target() -> Perquintill; fn variability() -> Multiplier; }
Expand description
Something that can convert the current multiplier to the next one.
Required methods
fn min() -> Multiplier
fn min() -> Multiplier
Minimum multiplier
fn target() -> Perquintill
fn target() -> Perquintill
Target block saturation level
fn variability() -> Multiplier
fn variability() -> Multiplier
Variability factor
Implementations on Foreign Types
Implementors
impl<T, S, V, M> MultiplierUpdate for TargetedFeeAdjustment<T, S, V, M> where
T: Config,
S: Get<Perquintill>,
V: Get<Multiplier>,
M: Get<Multiplier>,