Trivial: fix fee estimate write error log message

This commit is contained in:
CryptAxe 2017-04-23 10:36:26 -07:00
parent 1b25b6df0f
commit 94807be8c6
No known key found for this signature in database
GPG Key ID: 91F0858CBB9B6574
1 changed files with 1 additions and 1 deletions

View File

@ -586,7 +586,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;