pub trait MultiplierUpdate: Convert<Multiplier, Multiplier> {
    fn min() -> Multiplier;
    fn max() -> Multiplier;
    fn target() -> Perquintill;
    fn variability() -> Multiplier;
}
Expand description

Something that can convert the current multiplier to the next one.

Required Methods§

Minimum multiplier. Any outcome of the convert function should be at least this.

Maximum multiplier. Any outcome of the convert function should be less or equal this.

Target block saturation level

Variability factor

Implementations on Foreign Types§

Implementors§