mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
60 lines
2.8 KiB
C++
60 lines
2.8 KiB
C++
// Copyright (c) 2015 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_DSNOTIFICATIONINTERFACE_H
|
|
#define BITCOIN_DSNOTIFICATIONINTERFACE_H
|
|
|
|
#include <validationinterface.h>
|
|
|
|
class CActiveMasternodeManager;
|
|
class CConnman;
|
|
class CDeterministicMNManager;
|
|
class CGovernanceManager;
|
|
class CMasternodeSync;
|
|
class PeerManager;
|
|
struct CJContext;
|
|
struct LLMQContext;
|
|
|
|
class CDSNotificationInterface : public CValidationInterface
|
|
{
|
|
public:
|
|
explicit CDSNotificationInterface(CConnman& connman,
|
|
CMasternodeSync& mn_sync,
|
|
CGovernanceManager& govman,
|
|
PeerManager& peerman,
|
|
const CActiveMasternodeManager* const mn_activeman,
|
|
const std::unique_ptr<CDeterministicMNManager>& dmnman,
|
|
const std::unique_ptr<LLMQContext>& llmq_ctx,
|
|
const std::unique_ptr<CJContext>& cj_ctx);
|
|
virtual ~CDSNotificationInterface() = default;
|
|
|
|
// a small helper to initialize current block height in sub-modules on startup
|
|
void InitializeCurrentBlockTip();
|
|
|
|
protected:
|
|
// CValidationInterface
|
|
void AcceptedBlockHeader(const CBlockIndex *pindexNew) override;
|
|
void NotifyHeaderTip(const CBlockIndex *pindexNew, bool fInitialDownload) override;
|
|
void SynchronousUpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
|
|
void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
|
|
void TransactionAddedToMempool(const CTransactionRef& tx, int64_t nAcceptTime) override;
|
|
void TransactionRemovedFromMempool(const CTransactionRef& ptx, MemPoolRemovalReason reason) override;
|
|
void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindex) override;
|
|
void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexDisconnected) override;
|
|
void NotifyMasternodeListChanged(bool undo, const CDeterministicMNList& oldMNList, const CDeterministicMNListDiff& diff) override;
|
|
void NotifyChainLock(const CBlockIndex* pindex, const std::shared_ptr<const llmq::CChainLockSig>& clsig) override;
|
|
|
|
private:
|
|
CConnman& m_connman;
|
|
CMasternodeSync& m_mn_sync;
|
|
CGovernanceManager& m_govman;
|
|
PeerManager& m_peerman;
|
|
const CActiveMasternodeManager* const m_mn_activeman;
|
|
const std::unique_ptr<CDeterministicMNManager>& m_dmnman;
|
|
const std::unique_ptr<LLMQContext>& m_llmq_ctx;
|
|
const std::unique_ptr<CJContext>& m_cj_ctx;
|
|
};
|
|
|
|
#endif // BITCOIN_DSNOTIFICATIONINTERFACE_H
|