Move tx estimation data out of CCheckPointData

This commit is contained in:
Pieter Wuille
2017-01-04 07:31:56 -08:00
parent a4bac66cca
commit 3641141c8f
7 changed files with 28 additions and 13 deletions

View File

@@ -130,7 +130,7 @@ double ClientModel::getVerificationProgress(const CBlockIndex *tipIn) const
LOCK(cs_main);
tip = chainActive.Tip();
}
return GuessVerificationProgress(Params().Checkpoints(), tip);
return GuessVerificationProgress(Params().TxData(), tip);
}
void ClientModel::updateTimer()