diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-09-19 14:47:21 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2013-09-20 10:49:34 +0200 |
commit | faaeae1eb3b7a1e2d558b52508cbe890ce5ea37e (patch) | |
tree | 8e0f23eccd6d009f3678206e773bf3c1eb67a9de /src/wallet.cpp | |
parent | 08596fc15decdb87c8dad5fa94a82d67963b1ea5 (diff) |
fix some printf -> LogPrintf leftovers
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 91de93da7a..26ffc71e19 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -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; |