aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorJ Ross Nicoll <[email protected]>2015-08-29 17:33:02 +0100
committerJ Ross Nicoll <[email protected]>2015-08-29 17:33:02 +0100
commit1d92617e1513cfd71baddb89e8a5e0688332d287 (patch)
treed67d6600b43091a0d537e59148d56a756d3d3709 /src/txmempool.cpp
parentMerge pull request #1268 from patricklodder/1.10-auxpow-tests (diff)
downloaddiscoin-1d92617e1513cfd71baddb89e8a5e0688332d287.tar.xz
discoin-1d92617e1513cfd71baddb89e8a5e0688332d287.zip
Corrected missing new lines in error messages
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp4
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;