Skip to content

Commit a3bd5d7

Browse files
committed
Merge pull request #5533
a15dba5 en: Avoid ambiguous language regarding when transactions confirm (Luke Dashjr)
2 parents a992d60 + a15dba5 commit a3bd5d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ std::string HelpMessage(HelpMessageMode mode)
286286
strUsage += " -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + " " + _("on startup") + "\n";
287287
strUsage += " -sendfreetransactions " + strprintf(_("Send transactions as zero-fee transactions if possible (default: %u)"), 0) + "\n";
288288
strUsage += " -spendzeroconfchange " + strprintf(_("Spend unconfirmed change when sending transactions (default: %u)"), 1) + "\n";
289-
strUsage += " -txconfirmtarget=<n> " + strprintf(_("If paytxfee is not set, include enough fee so transactions are confirmed on average within n blocks (default: %u)"), 1) + "\n";
289+
strUsage += " -txconfirmtarget=<n> " + strprintf(_("If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u)"), 1) + "\n";
290290
strUsage += " -maxtxfee=<amt> " + strprintf(_("Maximum total fees to use in a single wallet transaction, setting too low may abort large transactions (default: %s)"), FormatMoney(maxTxFee)) + "\n";
291291
strUsage += " -upgradewallet " + _("Upgrade wallet to latest format") + " " + _("on startup") + "\n";
292292
strUsage += " -wallet=<file> " + _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), "wallet.dat") + "\n";

src/rpcmining.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ Value estimatefee(const Array& params, bool fHelp)
674674
throw runtime_error(
675675
"estimatefee nblocks\n"
676676
"\nEstimates the approximate fee per kilobyte\n"
677-
"needed for a transaction to get confirmed\n"
677+
"needed for a transaction to begin confirmation\n"
678678
"within nblocks blocks.\n"
679679
"\nArguments:\n"
680680
"1. nblocks (numeric)\n"
@@ -706,7 +706,7 @@ Value estimatepriority(const Array& params, bool fHelp)
706706
throw runtime_error(
707707
"estimatepriority nblocks\n"
708708
"\nEstimates the approximate priority\n"
709-
"a zero-fee transaction needs to get confirmed\n"
709+
"a zero-fee transaction needs to begin confirmation\n"
710710
"within nblocks blocks.\n"
711711
"\nArguments:\n"
712712
"1. nblocks (numeric)\n"

0 commit comments

Comments
 (0)