aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/coinselection.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-09-28 08:50:02 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-09-29 18:49:20 +0200
commit2222c04e1b9960030cb590c789a0d2375add4544 (patch)
treeb283ca0c8c13ab34e49c735f759c86f4a5fcec99 /src/wallet/coinselection.cpp
parentfa6c1e850f3a96f884ba8a635b72d3abea1f4e56 (diff)
downloadbitcoin-2222c04e1b9960030cb590c789a0d2375add4544.tar.xz
log: Adjust coin selection log string
Replace the outdated function name with words from the English language. Logging the function name can be toggled with -logsourcelocations.
Diffstat (limited to 'src/wallet/coinselection.cpp')
-rw-r--r--src/wallet/coinselection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/coinselection.cpp b/src/wallet/coinselection.cpp
index 8cff6e99b7..a03d17cb7a 100644
--- a/src/wallet/coinselection.cpp
+++ b/src/wallet/coinselection.cpp
@@ -279,7 +279,7 @@ bool KnapsackSolver(const CAmount& nTargetValue, std::vector<OutputGroup>& group
}
if (LogAcceptCategory(BCLog::SELECTCOINS)) {
- std::string log_message{"SelectCoins() best subset: "};
+ std::string log_message{"Coin selection best subset: "};
for (unsigned int i = 0; i < applicable_groups.size(); i++) {
if (vfBest[i]) {
log_message += strprintf("%s ", FormatMoney(applicable_groups[i].m_value));