Fix version check in CBlockPolicyEstimator::Read

This commit is contained in:
Alexander Block 2018-01-14 14:06:46 +01:00
parent 12d8ed437c
commit c5bfd21570

View File

@ -470,7 +470,7 @@ void CBlockPolicyEstimator::Read(CAutoFile& filein, int nFileVersion)
filein >> nFileBestSeenHeight; filein >> nFileBestSeenHeight;
feeStats.Read(filein); feeStats.Read(filein);
nBestSeenHeight = nFileBestSeenHeight; nBestSeenHeight = nFileBestSeenHeight;
if (nFileVersion < 139900) { if (nFileVersion < 120300) {
TxConfirmStats priStats; TxConfirmStats priStats;
priStats.Read(filein); priStats.Read(filein);
} }