@@ -23,12 +23,10 @@ void RegisterValidationInterface(CValidationInterface* pwalletIn) {
2323 g_signals.Broadcast .connect (boost::bind (&CValidationInterface::ResendWalletTransactions, pwalletIn, _1, _2));
2424 g_signals.BlockChecked .connect (boost::bind (&CValidationInterface::BlockChecked, pwalletIn, _1, _2));
2525 g_signals.ScriptForMining .connect (boost::bind (&CValidationInterface::GetScriptForMining, pwalletIn, _1));
26- g_signals.BlockFound .connect (boost::bind (&CValidationInterface::ResetRequestCount, pwalletIn, _1));
2726 g_signals.NewPoWValidBlock .connect (boost::bind (&CValidationInterface::NewPoWValidBlock, pwalletIn, _1, _2));
2827}
2928
3029void UnregisterValidationInterface (CValidationInterface* pwalletIn) {
31- g_signals.BlockFound .disconnect (boost::bind (&CValidationInterface::ResetRequestCount, pwalletIn, _1));
3230 g_signals.ScriptForMining .disconnect (boost::bind (&CValidationInterface::GetScriptForMining, pwalletIn, _1));
3331 g_signals.BlockChecked .disconnect (boost::bind (&CValidationInterface::BlockChecked, pwalletIn, _1, _2));
3432 g_signals.Broadcast .disconnect (boost::bind (&CValidationInterface::ResendWalletTransactions, pwalletIn, _1, _2));
@@ -43,7 +41,6 @@ void UnregisterValidationInterface(CValidationInterface* pwalletIn) {
4341}
4442
4543void UnregisterAllValidationInterfaces () {
46- g_signals.BlockFound .disconnect_all_slots ();
4744 g_signals.ScriptForMining .disconnect_all_slots ();
4845 g_signals.BlockChecked .disconnect_all_slots ();
4946 g_signals.Broadcast .disconnect_all_slots ();
0 commit comments