diff options
| author | J Ross Nicoll <[email protected]> | 2015-08-29 17:33:02 +0100 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-08-29 17:33:02 +0100 |
| commit | 1d92617e1513cfd71baddb89e8a5e0688332d287 (patch) | |
| tree | d67d6600b43091a0d537e59148d56a756d3d3709 /src/txmempool.cpp | |
| parent | Merge pull request #1268 from patricklodder/1.10-auxpow-tests (diff) | |
| download | discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.tar.xz discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.zip | |
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; |