bump required version for fee_estimates.dat file

This commit is contained in:
UdjinM6 2015-06-23 18:22:39 +03:00
parent 159b3366b1
commit db18ce0480

View File

@ -666,7 +666,7 @@ CTxMemPool::WriteFeeEstimates(CAutoFile& fileout) const
{ {
try { try {
LOCK(cs); 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 fileout << CLIENT_VERSION; // version that wrote the file
minerPolicyEstimator->Write(fileout); minerPolicyEstimator->Write(fileout);
} }