From 94807be8c6e196c01e9bfc0e44fb1604a6714d8e Mon Sep 17 00:00:00 2001 From: CryptAxe Date: Sun, 23 Apr 2017 10:36:26 -0700 Subject: [PATCH] Trivial: fix fee estimate write error log message --- src/policy/fees.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp index f3f7f8378..bd169f875 100644 --- a/src/policy/fees.cpp +++ b/src/policy/fees.cpp @@ -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;