Merge pull request #6055
a8cdaf5checkpoints: move the checkpoints enable boolean into main (Cory Fields)11982d3checkpoints: Decouple checkpoints from Params (Cory Fields)6996823checkpoints: make checkpoints a member of CChainParams (Cory Fields)9f13a10checkpoints: store mapCheckpoints in CCheckpointData rather than a pointer (Cory Fields)
This commit is contained in:
@@ -89,7 +89,7 @@ QDateTime ClientModel::getLastBlockDate() const
|
||||
double ClientModel::getVerificationProgress() const
|
||||
{
|
||||
LOCK(cs_main);
|
||||
return Checkpoints::GuessVerificationProgress(chainActive.Tip());
|
||||
return Checkpoints::GuessVerificationProgress(Params().Checkpoints(), chainActive.Tip());
|
||||
}
|
||||
|
||||
void ClientModel::updateTimer()
|
||||
|
||||
Reference in New Issue
Block a user