mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
26 lines
697 B
C++
26 lines
697 B
C++
|
// 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"
|
||
|
#include "masternode-budget.h"
|
||
|
#include "masternode-payments.h"
|
||
|
#include "masternode-sync.h"
|
||
|
|
||
|
CDSNotificationInterface::CDSNotificationInterface()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
CDSNotificationInterface::~CDSNotificationInterface()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void CDSNotificationInterface::UpdatedBlockTip(const CBlockIndex *pindex)
|
||
|
{
|
||
|
darkSendPool.UpdatedBlockTip(pindex);
|
||
|
mnpayments.UpdatedBlockTip(pindex);
|
||
|
budget.UpdatedBlockTip(pindex);
|
||
|
masternodeSync.UpdatedBlockTip(pindex);
|
||
|
}
|