chore: rename price bump arg (#4399)

This commit is contained in:
Matthias Seitz
2023-08-29 10:54:15 -07:00
committed by GitHub
parent cb82498526
commit 4a2c1691fc

View File

@@ -35,7 +35,7 @@ pub struct TxPoolArgs {
pub max_account_slots: usize,
/// Price bump (in %) for the transaction pool underpriced check.
#[arg(long = "txpool.price_bump", help_heading = "TxPool", default_value_t = DEFAULT_PRICE_BUMP)]
#[arg(long = "txpool.pricebump", help_heading = "TxPool", default_value_t = DEFAULT_PRICE_BUMP)]
pub price_bump: u128,
}