From 54b14001fa401400c06692967ee0c6c07b340c8e Mon Sep 17 00:00:00 2001 From: Nicolas Ochem Date: Wed, 25 Oct 2017 02:38:47 -0700 Subject: [PATCH] fix mining help (#6885) was --min-gas-price=[STRING] Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --basic-tx-usd. Issue: --basic-tx-usd does not exist. Author probably meant --usd-per-tx. New: --min-gas-price=[STRING] Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --usd-per-tx. --- parity/cli/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parity/cli/mod.rs b/parity/cli/mod.rs index 774256d02..68a2e0e09 100644 --- a/parity/cli/mod.rs +++ b/parity/cli/mod.rs @@ -694,7 +694,7 @@ usage! { ARG arg_min_gas_price: (Option) = None, or |c: &Config| otry!(c.mining).min_gas_price.clone(), "--min-gas-price=[STRING]", - "Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --basic-tx-usd.", + "Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --usd-per-tx.", ARG arg_author: (Option) = None, or |c: &Config| otry!(c.mining).author.clone(), "--author=[ADDRESS]",