// 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 "governance.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); governance.UpdatedBlockTip(pindex); masternodeSync.UpdatedBlockTip(pindex); }