Merge #10263: Trivial: fix fee estimate write error log message

94807be Trivial: fix fee estimate write error log message (CryptAxe)

Tree-SHA512: 998c9b331e901562c9ba575a85bc6c66f28d926dfe8116f08ab903e024c63a13fd37a58d19eb6504ad880d5bbccfbf6cba83ba0a6917f5d9068c52114f71b437
This commit is contained in:
Wladimir J. van der Laan 2017-04-25 13:28:07 +02:00 committed by Pasta
parent 5bde530fa9
commit 95e30b2ff7
No known key found for this signature in database
GPG Key ID: 0B8EB7A31A44D9C6

View File

@ -584,7 +584,7 @@ bool CBlockPolicyEstimator::Write(CAutoFile& fileout) const
feeStats->Write(fileout);
}
catch (const std::exception&) {
LogPrintf("CBlockPolicyEstimator::Write(): unable to read policy estimator data (non-fatal)\n");
LogPrintf("CBlockPolicyEstimator::Write(): unable to write policy estimator data (non-fatal)\n");
return false;
}
return true;