Skip to content

Commit 7df0cf7

Browse files
committed
Replace remaining literals BTC with CURRENCY_UNIT
This replaces one remaining instance of the literal "BTC" string with the CURRENCY_UNIT constant, as is done in most of the codebase already. The other remaining instance (which is just part of a log message and thus not really user-visible) is just removed. After this change, no instance of literal "BTC" remains anywhere in the non-Qt and non-test codebase.
1 parent 3f9e6a3 commit 7df0cf7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -974,7 +974,7 @@ bool MemPoolAccept::Finalize(ATMPArgs& args, Workspace& ws)
974974
// Remove conflicting transactions from the mempool
975975
for (CTxMemPool::txiter it : allConflicting)
976976
{
977-
LogPrint(BCLog::MEMPOOL, "replacing tx %s with %s for %s BTC additional fees, %d delta bytes\n",
977+
LogPrint(BCLog::MEMPOOL, "replacing tx %s with %s for %s additional fees, %d delta bytes\n",
978978
it->GetTx().GetHash().ToString(),
979979
hash.ToString(),
980980
FormatMoney(nModifiedFees - nConflictingFees),

src/wallet/rpcwallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3361,7 +3361,7 @@ static UniValue bumpfee(const JSONRPCRequest& request)
33613361
" the dust threshold."},
33623362
{"fee_rate", RPCArg::Type::NUM, /* default */ "fallback to 'confTarget'", "FeeRate (NOT total fee) to pay, in " + CURRENCY_UNIT + " per kB\n"
33633363
" Specify a fee rate instead of relying on the built-in fee estimator.\n"
3364-
" Must be at least 0.0001 BTC per kB higher than the current transaction fee rate.\n"},
3364+
"Must be at least 0.0001 " + CURRENCY_UNIT + " per kB higher than the current transaction fee rate.\n"},
33653365
{"replaceable", RPCArg::Type::BOOL, /* default */ "true", "Whether the new transaction should still be\n"
33663366
" marked bip-125 replaceable. If true, the sequence numbers in the transaction will\n"
33673367
" be left unchanged from the original. If false, any input sequence numbers in the\n"

0 commit comments

Comments
 (0)