2019-01-29 15:53:14 +01:00
|
|
|
// Copyright (c) 2014-2019 The Dash Core developers
|
2016-03-02 22:20:04 +01:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <chainparams.h>
|
|
|
|
#include <dsnotificationinterface.h>
|
|
|
|
#include <governance/governance.h>
|
|
|
|
#include <masternode/masternode-payments.h>
|
|
|
|
#include <masternode/masternode-sync.h>
|
|
|
|
#include <privatesend/privatesend.h>
|
2017-12-01 19:53:34 +01:00
|
|
|
#ifdef ENABLE_WALLET
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <privatesend/privatesend-client.h>
|
2017-12-01 19:53:34 +01:00
|
|
|
#endif // ENABLE_WALLET
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <validation.h>
|
2016-03-02 22:20:04 +01:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <evo/deterministicmns.h>
|
|
|
|
#include <evo/mnauth.h>
|
2018-02-14 14:43:03 +01:00
|
|
|
|
2020-03-19 23:46:56 +01:00
|
|
|
#include <llmq/quorums.h>
|
|
|
|
#include <llmq/quorums_chainlocks.h>
|
|
|
|
#include <llmq/quorums_instantsend.h>
|
|
|
|
#include <llmq/quorums_dkgsessionmgr.h>
|
2019-01-22 14:20:32 +01:00
|
|
|
|
2017-08-29 01:51:33 +02:00
|
|
|
void CDSNotificationInterface::InitializeCurrentBlockTip()
|
2016-03-02 22:20:04 +01:00
|
|
|
{
|
2017-08-29 01:51:33 +02:00
|
|
|
LOCK(cs_main);
|
2019-08-06 05:08:33 +02:00
|
|
|
UpdatedBlockTip(chainActive.Tip(), nullptr, IsInitialBlockDownload());
|
2016-03-02 22:20:04 +01:00
|
|
|
}
|
|
|
|
|
2017-09-03 15:30:08 +02:00
|
|
|
void CDSNotificationInterface::AcceptedBlockHeader(const CBlockIndex *pindexNew)
|
|
|
|
{
|
2019-01-22 14:20:32 +01:00
|
|
|
llmq::chainLocksHandler->AcceptedBlockHeader(pindexNew);
|
2017-09-03 15:30:08 +02:00
|
|
|
masternodeSync.AcceptedBlockHeader(pindexNew);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CDSNotificationInterface::NotifyHeaderTip(const CBlockIndex *pindexNew, bool fInitialDownload)
|
|
|
|
{
|
2017-09-19 16:51:38 +02:00
|
|
|
masternodeSync.NotifyHeaderTip(pindexNew, fInitialDownload, connman);
|
2017-09-03 15:30:08 +02:00
|
|
|
}
|
|
|
|
|
2017-08-04 19:43:48 +02:00
|
|
|
void CDSNotificationInterface::UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload)
|
2016-03-02 22:20:04 +01:00
|
|
|
{
|
2017-09-20 22:30:56 +02:00
|
|
|
if (pindexNew == pindexFork) // blocks were disconnected without any new ones
|
|
|
|
return;
|
|
|
|
|
2018-02-14 14:43:03 +01:00
|
|
|
deterministicMNManager->UpdatedBlockTip(pindexNew);
|
|
|
|
|
2017-09-20 22:30:56 +02:00
|
|
|
masternodeSync.UpdatedBlockTip(pindexNew, fInitialDownload, connman);
|
|
|
|
|
2017-12-07 10:43:23 +01:00
|
|
|
// Update global DIP0001 activation status
|
2018-03-08 13:18:24 +01:00
|
|
|
fDIP0001ActiveAtTip = pindexNew->nHeight >= Params().GetConsensus().DIP0001Height;
|
2017-09-22 03:54:14 +02:00
|
|
|
|
2017-10-09 20:25:24 +02:00
|
|
|
if (fInitialDownload)
|
2017-09-22 03:54:14 +02:00
|
|
|
return;
|
|
|
|
|
2019-06-27 22:24:43 +02:00
|
|
|
CPrivateSend::UpdatedBlockTip(pindexNew);
|
|
|
|
#ifdef ENABLE_WALLET
|
|
|
|
privateSendClient.UpdatedBlockTip(pindexNew);
|
|
|
|
#endif // ENABLE_WALLET
|
|
|
|
|
2018-03-29 17:08:00 +02:00
|
|
|
if (fLiteMode)
|
|
|
|
return;
|
|
|
|
|
2019-04-05 05:55:30 +02:00
|
|
|
llmq::quorumInstantSendManager->UpdatedBlockTip(pindexNew);
|
2019-04-30 14:48:21 +02:00
|
|
|
llmq::chainLocksHandler->UpdatedBlockTip(pindexNew);
|
2019-01-22 14:20:32 +01:00
|
|
|
|
2017-09-22 03:54:14 +02:00
|
|
|
governance.UpdatedBlockTip(pindexNew, connman);
|
2019-04-30 14:48:21 +02:00
|
|
|
llmq::quorumManager->UpdatedBlockTip(pindexNew, fInitialDownload);
|
|
|
|
llmq::quorumDKGSessionManager->UpdatedBlockTip(pindexNew, fInitialDownload);
|
2016-03-02 22:20:04 +01:00
|
|
|
}
|
2017-01-29 09:22:14 +01:00
|
|
|
|
2019-12-07 11:56:17 +01:00
|
|
|
void CDSNotificationInterface::TransactionAddedToMempool(const CTransactionRef& ptx, int64_t nAcceptTime)
|
2019-05-23 18:22:37 +02:00
|
|
|
{
|
2019-05-27 13:35:22 +02:00
|
|
|
llmq::quorumInstantSendManager->TransactionAddedToMempool(ptx);
|
2019-12-07 11:56:17 +01:00
|
|
|
llmq::chainLocksHandler->TransactionAddedToMempool(ptx, nAcceptTime);
|
2019-05-27 16:22:09 +02:00
|
|
|
CPrivateSend::TransactionAddedToMempool(ptx);
|
2019-05-23 18:22:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CDSNotificationInterface::BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindex, const std::vector<CTransactionRef>& vtxConflicted)
|
|
|
|
{
|
|
|
|
// TODO: Tempoarily ensure that mempool removals are notified before
|
|
|
|
// connected transactions. This shouldn't matter, but the abandoned
|
|
|
|
// state of transactions in our wallet is currently cleared when we
|
|
|
|
// receive another notification and there is a race condition where
|
|
|
|
// notification of a connected conflict might cause an outside process
|
|
|
|
// to abandon a transaction and then have it inadvertantly cleared by
|
|
|
|
// the notification that the conflicted transaction was evicted.
|
|
|
|
|
2019-05-27 13:35:22 +02:00
|
|
|
llmq::quorumInstantSendManager->BlockConnected(pblock, pindex, vtxConflicted);
|
2019-05-27 13:48:01 +02:00
|
|
|
llmq::chainLocksHandler->BlockConnected(pblock, pindex, vtxConflicted);
|
2019-05-27 16:22:09 +02:00
|
|
|
CPrivateSend::BlockConnected(pblock, pindex, vtxConflicted);
|
2019-05-23 18:22:37 +02:00
|
|
|
}
|
|
|
|
|
2019-05-27 14:55:29 +02:00
|
|
|
void CDSNotificationInterface::BlockDisconnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexDisconnected)
|
2019-05-23 18:22:37 +02:00
|
|
|
{
|
2019-05-27 13:35:22 +02:00
|
|
|
llmq::quorumInstantSendManager->BlockDisconnected(pblock, pindexDisconnected);
|
2019-05-27 13:48:01 +02:00
|
|
|
llmq::chainLocksHandler->BlockDisconnected(pblock, pindexDisconnected);
|
2019-05-27 16:22:09 +02:00
|
|
|
CPrivateSend::BlockDisconnected(pblock, pindexDisconnected);
|
2019-05-23 18:22:37 +02:00
|
|
|
}
|
|
|
|
|
2019-04-09 13:26:33 +02:00
|
|
|
void CDSNotificationInterface::NotifyMasternodeListChanged(bool undo, const CDeterministicMNList& oldMNList, const CDeterministicMNListDiff& diff)
|
2019-01-03 10:17:43 +01:00
|
|
|
{
|
2019-04-09 13:26:33 +02:00
|
|
|
CMNAuth::NotifyMasternodeListChanged(undo, oldMNList, diff);
|
2019-01-03 10:17:43 +01:00
|
|
|
governance.UpdateCachesAndClean();
|
|
|
|
}
|
2018-09-21 16:01:04 +02:00
|
|
|
|
2019-05-23 11:13:58 +02:00
|
|
|
void CDSNotificationInterface::NotifyChainLock(const CBlockIndex* pindex, const llmq::CChainLockSig& clsig)
|
2018-09-21 16:01:04 +02:00
|
|
|
{
|
|
|
|
llmq::quorumInstantSendManager->NotifyChainLock(pindex);
|
2020-01-22 11:35:31 +01:00
|
|
|
CPrivateSend::NotifyChainLock(pindex);
|
2018-09-21 16:01:04 +02:00
|
|
|
}
|