diff options
author | John Newbery <john@johnnewbery.com> | 2018-04-05 10:17:32 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-07 12:29:48 -0400 |
commit | 5c21e6c6d3843232f384079837da1d9fae573b8d (patch) | |
tree | 10596bfe565862e054d4a38655c049989f2e41e1 /src/wallet/wallet.cpp | |
parent | 2b54155a459c235626fddc4495bb681b93d3dbc5 (diff) |
[logging] Comment all continuing logs.
Most logs should terminated with a '\n'. Some logs
are built up over multiple calls to logPrintf(), so
do not need a newline terminater. Comment all of
these 'continued' logs as a linter hing.
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index dbc1760c80..59fdae9035 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3076,7 +3076,7 @@ bool CWallet::CommitTransaction(CTransactionRef tx, mapValue_t mapValue, std::ve wtxNew.fTimeReceivedIsTxTime = true; wtxNew.fFromMe = true; - LogPrintf("CommitTransaction:\n%s", wtxNew.tx->ToString()); + LogPrintf("CommitTransaction:\n%s", wtxNew.tx->ToString()); /* Continued */ { // Take key pair from key pool so it won't be used again reservekey.KeepKey(); |