Use correct version for fee estimates db

This commit is contained in:
Alexander Block 2018-01-14 14:13:39 +01:00
parent fc95cbb49f
commit 4a19af7bd1

View File

@ -1029,7 +1029,7 @@ CTxMemPool::WriteFeeEstimates(CAutoFile& fileout) const
{
try {
LOCK(cs);
fileout << 120201; // version required to read: 0.12.00 or later
fileout << 120300; // version required to read: 0.12.00 or later
fileout << CLIENT_VERSION; // version that wrote the file
minerPolicyEstimator->Write(fileout);
}