aboutsummaryrefslogtreecommitdiff
path: root/src/policy
diff options
context:
space:
mode:
authorCryptAxe <cryptaxe@gmail.com>2017-04-23 10:36:26 -0700
committerCryptAxe <cryptaxe@gmail.com>2017-04-23 10:36:26 -0700
commit94807be8c6e196c01e9bfc0e44fb1604a6714d8e (patch)
tree7fafa93bc97c5f40ad405ca389fc6b0ca81ce2d6 /src/policy
parent1b25b6df0f08f7474228c5b6ed13b58682e1e440 (diff)
downloadbitcoin-94807be8c6e196c01e9bfc0e44fb1604a6714d8e.tar.xz
Trivial: fix fee estimate write error log message
Diffstat (limited to 'src/policy')
-rw-r--r--src/policy/fees.cpp2
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;