2016-03-02 22:20:04 +01:00
|
|
|
// Copyright (c) 2015 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 "dsnotificationinterface.h"
|
|
|
|
#include "darksend.h"
|
2016-04-15 04:54:11 +02:00
|
|
|
#include "governance.h"
|
2016-10-20 23:11:30 +02:00
|
|
|
#include "masternodeman.h"
|
2016-03-02 22:20:04 +01:00
|
|
|
#include "masternode-payments.h"
|
|
|
|
#include "masternode-sync.h"
|
|
|
|
|
|
|
|
CDSNotificationInterface::CDSNotificationInterface()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CDSNotificationInterface::~CDSNotificationInterface()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CDSNotificationInterface::UpdatedBlockTip(const CBlockIndex *pindex)
|
|
|
|
{
|
2016-10-20 23:11:30 +02:00
|
|
|
mnodeman.UpdatedBlockTip(pindex);
|
2016-03-02 22:20:04 +01:00
|
|
|
darkSendPool.UpdatedBlockTip(pindex);
|
|
|
|
mnpayments.UpdatedBlockTip(pindex);
|
2016-04-15 04:54:11 +02:00
|
|
|
governance.UpdatedBlockTip(pindex);
|
2016-03-02 22:20:04 +01:00
|
|
|
masternodeSync.UpdatedBlockTip(pindex);
|
|
|
|
}
|