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 35e9c1a commit 40d31d0Copy full SHA for 40d31d0
src/policy/fees.cpp
@@ -596,9 +596,9 @@ bool CBlockPolicyEstimator::Read(CAutoFile& filein)
596
LOCK(cs_feeEstimator);
597
int nVersionRequired, nVersionThatWrote, nFileBestSeenHeight;
598
filein >> nVersionRequired >> nVersionThatWrote;
599
- filein >> nFileBestSeenHeight;
600
if (nVersionRequired > CLIENT_VERSION)
601
return error("CBlockPolicyEstimator::Read(): up-version (%d) fee estimate file", nVersionRequired);
+ filein >> nFileBestSeenHeight;
602
feeStats->Read(filein);
603
nBestSeenHeight = nFileBestSeenHeight;
604
// if nVersionThatWrote < 139900 then another TxConfirmStats (for priority) follows but can be ignored.
0 commit comments