diff options
| author | Philip Kaufmann <[email protected]> | 2013-09-19 14:47:21 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2013-09-20 10:49:34 +0200 |
| commit | faaeae1eb3b7a1e2d558b52508cbe890ce5ea37e (patch) | |
| tree | 8e0f23eccd6d009f3678206e773bf3c1eb67a9de /src/wallet.cpp | |
| parent | Merge pull request #3021 from Diapolo/fix_extract_strings_qt (diff) | |
| download | discoin-faaeae1eb3b7a1e2d558b52508cbe890ce5ea37e.tar.xz discoin-faaeae1eb3b7a1e2d558b52508cbe890ce5ea37e.zip | |
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 91de93da7..26ffc71e1 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; |