mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-16 13:01:19 +02:00
fix some printf -> LogPrintf leftovers
This commit is contained in:
parent
08596fc15d
commit
faaeae1eb3
3 changed files with 6 additions and 14 deletions
|
|
@ -1145,11 +1145,11 @@ bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfThe
|
|||
nValueRet += vValue[i].first;
|
||||
}
|
||||
|
||||
LogPrintf("selectcoins", "SelectCoins() best subset: ");
|
||||
LogPrint("selectcoins", "SelectCoins() best subset: ");
|
||||
for (unsigned int i = 0; i < vValue.size(); i++)
|
||||
if (vfBest[i])
|
||||
LogPrintf("selectcoins", "%s ", FormatMoney(vValue[i].first).c_str());
|
||||
LogPrintf("selectcoins", "total %s\n", FormatMoney(nBest).c_str());
|
||||
LogPrint("selectcoins", "%s ", FormatMoney(vValue[i].first).c_str());
|
||||
LogPrint("selectcoins", "total %s\n", FormatMoney(nBest).c_str());
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue