From 189aed3742d8a26f49e82bf0d45e61daae12f5f7 Mon Sep 17 00:00:00 2001 From: Nicolas Ochem Date: Tue, 24 Oct 2017 21:58:16 -0700 Subject: [PATCH] fix mining help 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 774256d026f..68a2e0e0966 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]",