We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b1db6 commit faefa5dCopy full SHA for faefa5d
src/policy/fees.cpp
@@ -6,6 +6,8 @@
6
#include <policy/fees.h>
7
8
#include <clientversion.h>
9
+#include <fs.h>
10
+#include <logging.h>
11
#include <streams.h>
12
#include <txmempool.h>
13
#include <util/system.h>
@@ -872,7 +874,7 @@ void CBlockPolicyEstimator::Flush() {
872
874
fs::path est_filepath = GetDataDir() / FEE_ESTIMATES_FILENAME;
873
875
CAutoFile est_file(fsbridge::fopen(est_filepath, "wb"), SER_DISK, CLIENT_VERSION);
876
if (est_file.IsNull() || !Write(est_file)) {
- LogPrintf("Failed to write fee estimates to %s\n", est_filepath.string());
877
+ LogPrintf("Failed to write fee estimates to %s. Continue anyway.\n", est_filepath.string());
878
}
879
880
0 commit comments