mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
80 lines
2.7 KiB
C++
80 lines
2.7 KiB
C++
// Copyright (c) 2014-2017 The Dash Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "chainparams.h"
|
|
#include "dsnotificationinterface.h"
|
|
#include "instantx.h"
|
|
#include "governance.h"
|
|
#include "masternode-payments.h"
|
|
#include "masternode-sync.h"
|
|
#include "privatesend.h"
|
|
#include "llmq/quorums.h"
|
|
#include "llmq/quorums_dkgsessionmgr.h"
|
|
#ifdef ENABLE_WALLET
|
|
#include "privatesend-client.h"
|
|
#endif // ENABLE_WALLET
|
|
#include "validation.h"
|
|
|
|
#include "evo/deterministicmns.h"
|
|
|
|
void CDSNotificationInterface::InitializeCurrentBlockTip()
|
|
{
|
|
LOCK(cs_main);
|
|
UpdatedBlockTip(chainActive.Tip(), NULL, IsInitialBlockDownload());
|
|
}
|
|
|
|
void CDSNotificationInterface::AcceptedBlockHeader(const CBlockIndex *pindexNew)
|
|
{
|
|
masternodeSync.AcceptedBlockHeader(pindexNew);
|
|
}
|
|
|
|
void CDSNotificationInterface::NotifyHeaderTip(const CBlockIndex *pindexNew, bool fInitialDownload)
|
|
{
|
|
masternodeSync.NotifyHeaderTip(pindexNew, fInitialDownload, connman);
|
|
}
|
|
|
|
void CDSNotificationInterface::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload)
|
|
{
|
|
if (pindexNew == pindexFork) // blocks were disconnected without any new ones
|
|
return;
|
|
|
|
deterministicMNManager->UpdatedBlockTip(pindexNew);
|
|
|
|
masternodeSync.UpdatedBlockTip(pindexNew, fInitialDownload, connman);
|
|
|
|
// Update global DIP0001 activation status
|
|
fDIP0001ActiveAtTip = pindexNew->nHeight >= Params().GetConsensus().DIP0001Height;
|
|
// update instantsend autolock activation flag (we reuse the DIP3 deployment)
|
|
instantsend.isAutoLockBip9Active =
|
|
(VersionBitsState(pindexNew, Params().GetConsensus(), Consensus::DEPLOYMENT_DIP0003, versionbitscache) == THRESHOLD_ACTIVE);
|
|
|
|
if (fInitialDownload)
|
|
return;
|
|
|
|
if (fLiteMode)
|
|
return;
|
|
|
|
CPrivateSend::UpdatedBlockTip(pindexNew);
|
|
#ifdef ENABLE_WALLET
|
|
privateSendClient.UpdatedBlockTip(pindexNew);
|
|
#endif // ENABLE_WALLET
|
|
instantsend.UpdatedBlockTip(pindexNew);
|
|
governance.UpdatedBlockTip(pindexNew, connman);
|
|
llmq::quorumManager->UpdatedBlockTip(pindexNew, pindexFork, fInitialDownload);
|
|
llmq::quorumDKGSessionManager->UpdatedBlockTip(pindexNew, pindexFork, fInitialDownload);
|
|
}
|
|
|
|
void CDSNotificationInterface::SyncTransaction(const CTransaction &tx, const CBlockIndex *pindex, int posInBlock)
|
|
{
|
|
instantsend.SyncTransaction(tx, pindex, posInBlock);
|
|
CPrivateSend::SyncTransaction(tx, pindex, posInBlock);
|
|
}
|
|
|
|
void CDSNotificationInterface::NotifyMasternodeListChanged(const CDeterministicMNList& newList)
|
|
{
|
|
governance.CheckMasternodeOrphanObjects(connman);
|
|
governance.CheckMasternodeOrphanVotes(connman);
|
|
governance.UpdateCachesAndClean();
|
|
}
|