From db18ce0480f037416ae25cbfc8bb74c048ca588b Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Tue, 23 Jun 2015 18:22:39 +0300 Subject: [PATCH] bump required version for fee_estimates.dat file --- src/txmempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.cpp b/src/txmempool.cpp index db598a1dfa..2daf3dd706 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -666,7 +666,7 @@ CTxMemPool::WriteFeeEstimates(CAutoFile& fileout) const { try { LOCK(cs); - fileout << 99900; // version required to read: 0.9.99 or later + fileout << 120000; // version required to read: 0.12.00 or later fileout << CLIENT_VERSION; // version that wrote the file minerPolicyEstimator->Write(fileout); }