aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2017-04-25 13:28:07 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2017-04-25 13:28:26 +0200
commitcb007e4346cf49357d104e08c3ccc027570b734d (patch)
tree2a3506cf1f04b7e3d18101b207a57adff5358215 /src
parent95f5e44075028d86ac35839696a0df51792a4f04 (diff)
parent94807be8c6e196c01e9bfc0e44fb1604a6714d8e (diff)
downloadbitcoin-cb007e4346cf49357d104e08c3ccc027570b734d.tar.xz
Merge #10263: Trivial: fix fee estimate write error log message
94807be Trivial: fix fee estimate write error log message (CryptAxe) Tree-SHA512: 998c9b331e901562c9ba575a85bc6c66f28d926dfe8116f08ab903e024c63a13fd37a58d19eb6504ad880d5bbccfbf6cba83ba0a6917f5d9068c52114f71b437
Diffstat (limited to 'src')
-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;