PPCoin: Accept pending synchronized checkpoint
[novacoin.git] / src / main.cpp
index 6839725..d6c10a4 100644 (file)
@@ -1595,6 +1595,9 @@ bool CBlock::AcceptBlock()
                 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700))
                     pnode->PushInventory(CInv(MSG_BLOCK, hash));
 
+    // ppcoin: check pending sync-checkpoint
+    Checkpoints::AcceptPendingSyncCheckpoint(hash);
+
     return true;
 }