@@ -23,12 +23,10 @@ void RegisterValidationInterface(CValidationInterface* pwalletIn) {
23
23
g_signals.Broadcast .connect (boost::bind (&CValidationInterface::ResendWalletTransactions, pwalletIn, _1, _2));
24
24
g_signals.BlockChecked .connect (boost::bind (&CValidationInterface::BlockChecked, pwalletIn, _1, _2));
25
25
g_signals.ScriptForMining .connect (boost::bind (&CValidationInterface::GetScriptForMining, pwalletIn, _1));
26
- g_signals.BlockFound .connect (boost::bind (&CValidationInterface::ResetRequestCount, pwalletIn, _1));
27
26
g_signals.NewPoWValidBlock .connect (boost::bind (&CValidationInterface::NewPoWValidBlock, pwalletIn, _1, _2));
28
27
}
29
28
30
29
void UnregisterValidationInterface (CValidationInterface* pwalletIn) {
31
- g_signals.BlockFound .disconnect (boost::bind (&CValidationInterface::ResetRequestCount, pwalletIn, _1));
32
30
g_signals.ScriptForMining .disconnect (boost::bind (&CValidationInterface::GetScriptForMining, pwalletIn, _1));
33
31
g_signals.BlockChecked .disconnect (boost::bind (&CValidationInterface::BlockChecked, pwalletIn, _1, _2));
34
32
g_signals.Broadcast .disconnect (boost::bind (&CValidationInterface::ResendWalletTransactions, pwalletIn, _1, _2));
@@ -43,7 +41,6 @@ void UnregisterValidationInterface(CValidationInterface* pwalletIn) {
43
41
}
44
42
45
43
void UnregisterAllValidationInterfaces () {
46
- g_signals.BlockFound .disconnect_all_slots ();
47
44
g_signals.ScriptForMining .disconnect_all_slots ();
48
45
g_signals.BlockChecked .disconnect_all_slots ();
49
46
g_signals.Broadcast .disconnect_all_slots ();
0 commit comments