diff --git a/src/masternode-sync.cpp b/src/masternode-sync.cpp index 53eb0e84b2..ebf1503b03 100644 --- a/src/masternode-sync.cpp +++ b/src/masternode-sync.cpp @@ -3,6 +3,7 @@ // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "activemasternode.h" +#include "checkpoints.h" #include "governance.h" #include "main.h" #include "masternode.h" @@ -30,6 +31,8 @@ bool CMasternodeSync::IsBlockchainSynced() if(fBlockchainSynced) return true; if(!pCurrentBlockIndex || !pindexBestHeader || fImporting || fReindex) return false; + if(fCheckpointsEnabled && pCurrentBlockIndex->nHeight < Checkpoints::GetTotalBlocksEstimate(Params().Checkpoints())) + return false; // same as !IsInitialBlockDownload() but no cs_main needed here int nMaxBlockTime = std::max(pCurrentBlockIndex->GetBlockTime(), pindexBestHeader->GetBlockTime());