diff options
| author | CryptAxe <[email protected]> | 2017-04-23 10:36:26 -0700 |
|---|---|---|
| committer | CryptAxe <[email protected]> | 2017-04-23 10:36:26 -0700 |
| commit | 94807be8c6e196c01e9bfc0e44fb1604a6714d8e (patch) | |
| tree | 7fafa93bc97c5f40ad405ca389fc6b0ca81ce2d6 | |
| parent | Merge #10097: Move zmq test skipping logic into individual test case. (diff) | |
| download | discoin-94807be8c6e196c01e9bfc0e44fb1604a6714d8e.tar.xz discoin-94807be8c6e196c01e9bfc0e44fb1604a6714d8e.zip | |
Trivial: fix fee estimate write error log message
| -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 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; |