diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-28 08:50:02 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-29 18:49:20 +0200 |
commit | 2222c04e1b9960030cb590c789a0d2375add4544 (patch) | |
tree | b283ca0c8c13ab34e49c735f759c86f4a5fcec99 /src/wallet/coinselection.cpp | |
parent | fa6c1e850f3a96f884ba8a635b72d3abea1f4e56 (diff) |
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.cpp | 2 |
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)); |