Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update lib.rs
  • Loading branch information
Szegoo authored Oct 6, 2022
commit b630fb18f410caae3b60bfa252c9dd38b258473c
2 changes: 1 addition & 1 deletion frame/transaction-payment/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ pub struct TargetedFeeAdjustment<T, S, V, M, X>(sp_std::marker::PhantomData<(T,

/// Something that can convert the current multiplier to the next one.
pub trait MultiplierUpdate: Convert<Multiplier, Multiplier> {
/// Minimum multiplier. Any outcome of the `convert` function should be less than this.
/// Minimum multiplier. Any outcome of the `convert` function should be more than this.
fn min() -> Multiplier;
/// Maximum multiplier. Any outcome of the `convert` function should be less than this.
fn max() -> Multiplier;
Expand Down