Skip to content

Commit cb007e4

Browse files
committed
Merge #10263: Trivial: fix fee estimate write error log message
94807be Trivial: fix fee estimate write error log message (CryptAxe) Tree-SHA512: 998c9b331e901562c9ba575a85bc6c66f28d926dfe8116f08ab903e024c63a13fd37a58d19eb6504ad880d5bbccfbf6cba83ba0a6917f5d9068c52114f71b437
2 parents 95f5e44 + 94807be commit cb007e4

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)