Skip to content

Commit 94807be

Browse files
committed
Trivial: fix fee estimate write error log message
1 parent 1b25b6d commit 94807be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/policy/fees.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ bool CBlockPolicyEstimator::Write(CAutoFile& fileout) const
586586
feeStats->Write(fileout);
587587
}
588588
catch (const std::exception&) {
589-
LogPrintf("CBlockPolicyEstimator::Write(): unable to read policy estimator data (non-fatal)\n");
589+
LogPrintf("CBlockPolicyEstimator::Write(): unable to write policy estimator data (non-fatal)\n");
590590
return false;
591591
}
592592
return true;

0 commit comments

Comments
 (0)