diff options
author | CryptAxe <cryptaxe@gmail.com> | 2017-04-23 10:36:26 -0700 |
---|---|---|
committer | CryptAxe <cryptaxe@gmail.com> | 2017-04-23 10:36:26 -0700 |
commit | 94807be8c6e196c01e9bfc0e44fb1604a6714d8e (patch) | |
tree | 7fafa93bc97c5f40ad405ca389fc6b0ca81ce2d6 /src/policy | |
parent | 1b25b6df0f08f7474228c5b6ed13b58682e1e440 (diff) |
Trivial: fix fee estimate write error log message
Diffstat (limited to 'src/policy')
-rw-r--r-- | src/policy/fees.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp index f3f7f8378e..bd169f875a 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; |