diff options
| author | Patrick Lodder <[email protected]> | 2015-08-30 18:48:53 +0200 |
|---|---|---|
| committer | Patrick Lodder <[email protected]> | 2015-08-30 18:48:53 +0200 |
| commit | 337bc990e82a7b4d6304900c891c0193006f8519 (patch) | |
| tree | ea8a35feca417986950e03056d28719d0564fa34 /src/txmempool.cpp | |
| parent | Merge pull request #1269 from langerhans/1.10-dev-nodebloom (diff) | |
| parent | Corrected missing new lines in error messages (diff) | |
| download | discoin-337bc990e82a7b4d6304900c891c0193006f8519.tar.xz discoin-337bc990e82a7b4d6304900c891c0193006f8519.zip | |
Merge pull request #1274 from rnicoll/1.10-missing-newline
Corrected missing new lines in error messages
Diffstat (limited to 'src/txmempool.cpp')
| -rw-r--r-- | src/txmempool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 1502cc6d2..24dd2a2ae 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -343,7 +343,7 @@ CTxMemPool::WriteFeeEstimates(CAutoFile& fileout) const minerPolicyEstimator->Write(fileout); } catch (const std::exception&) { - LogPrintf("CTxMemPool::WriteFeeEstimates(): unable to write policy estimator data (non-fatal)"); + LogPrintf("CTxMemPool::WriteFeeEstimates(): unable to write policy estimator data (non-fatal)\n"); return false; } return true; @@ -362,7 +362,7 @@ CTxMemPool::ReadFeeEstimates(CAutoFile& filein) minerPolicyEstimator->Read(filein); } catch (const std::exception&) { - LogPrintf("CTxMemPool::ReadFeeEstimates(): unable to read policy estimator data (non-fatal)"); + LogPrintf("CTxMemPool::ReadFeeEstimates(): unable to read policy estimator data (non-fatal)\n"); return false; } return true; |