mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 18:40:58 +00:00
Detected changes since fork from Bitcoin Core 0.14 and either updated the Dogecoin Core developer copyright, or added a line for it. Script can be found at: https://gist.github.com/patricklodder/210a449896ece9ca4a8f872328198e3f
84 lines
5.2 KiB
C++
84 lines
5.2 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
|
// Copyright (c) 2022 The Dogecoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "validationinterface.h"
|
|
|
|
#include <boost/bind/bind.hpp>
|
|
|
|
static CMainSignals g_signals;
|
|
|
|
CMainSignals& GetMainSignals()
|
|
{
|
|
return g_signals;
|
|
}
|
|
|
|
void RegisterValidationInterface(CValidationInterface* pwalletIn) {
|
|
g_signals.UpdatedBlockTip.connect(boost::bind(&CValidationInterface::UpdatedBlockTip,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2,
|
|
boost::placeholders::_3));
|
|
g_signals.SyncTransaction.connect(boost::bind(&CValidationInterface::SyncTransaction,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2,
|
|
boost::placeholders::_3));
|
|
g_signals.UpdatedTransaction.connect(boost::bind(&CValidationInterface::UpdatedTransaction,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.SetBestChain.connect(boost::bind(&CValidationInterface::SetBestChain,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.Broadcast.connect(boost::bind(&CValidationInterface::ResendWalletTransactions,
|
|
pwalletIn, boost::placeholders::_1, boost::placeholders::_2));
|
|
g_signals.BlockChecked.connect(boost::bind(&CValidationInterface::BlockChecked,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2));
|
|
g_signals.ScriptForMining.connect(boost::bind(&CValidationInterface::GetScriptForMining,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.BlockFound.connect(boost::bind(&CValidationInterface::ResetRequestCount,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.NewPoWValidBlock.connect(boost::bind(&CValidationInterface::NewPoWValidBlock,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2));
|
|
}
|
|
|
|
void UnregisterValidationInterface(CValidationInterface* pwalletIn) {
|
|
g_signals.BlockFound.disconnect(boost::bind(&CValidationInterface::ResetRequestCount,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.ScriptForMining.disconnect(boost::bind(&CValidationInterface::GetScriptForMining,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.BlockChecked.disconnect(boost::bind(&CValidationInterface::BlockChecked,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2));
|
|
g_signals.Broadcast.disconnect(boost::bind(&CValidationInterface::ResendWalletTransactions,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2));
|
|
g_signals.SetBestChain.disconnect(boost::bind(&CValidationInterface::SetBestChain,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.UpdatedTransaction.disconnect(boost::bind(&CValidationInterface::UpdatedTransaction,
|
|
pwalletIn, boost::placeholders::_1));
|
|
g_signals.SyncTransaction.disconnect(boost::bind(&CValidationInterface::SyncTransaction,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2,
|
|
boost::placeholders::_3));
|
|
g_signals.UpdatedBlockTip.disconnect(boost::bind(&CValidationInterface::UpdatedBlockTip,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2,
|
|
boost::placeholders::_3));
|
|
g_signals.NewPoWValidBlock.disconnect(boost::bind(&CValidationInterface::NewPoWValidBlock,
|
|
pwalletIn, boost::placeholders::_1,
|
|
boost::placeholders::_2));
|
|
}
|
|
|
|
void UnregisterAllValidationInterfaces() {
|
|
g_signals.BlockFound.disconnect_all_slots();
|
|
g_signals.ScriptForMining.disconnect_all_slots();
|
|
g_signals.BlockChecked.disconnect_all_slots();
|
|
g_signals.Broadcast.disconnect_all_slots();
|
|
g_signals.SetBestChain.disconnect_all_slots();
|
|
g_signals.UpdatedTransaction.disconnect_all_slots();
|
|
g_signals.SyncTransaction.disconnect_all_slots();
|
|
g_signals.UpdatedBlockTip.disconnect_all_slots();
|
|
g_signals.NewPoWValidBlock.disconnect_all_slots();
|
|
}
|