| 1447 | } |
| 1448 | |
| 1449 | void BitcoinGUI::subscribeToCoreSignals() |
| 1450 | { |
| 1451 | // Connect signals to client |
| 1452 | m_handler_message_box = m_node.handleMessageBox(std::bind(ThreadSafeMessageBox, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)); |
| 1453 | m_handler_question = m_node.handleQuestion(std::bind(ThreadSafeMessageBox, this, std::placeholders::_1, std::placeholders::_3, std::placeholders::_4)); |
| 1454 | } |
| 1455 | |
| 1456 | void BitcoinGUI::unsubscribeFromCoreSignals() |
| 1457 | { |
nothing calls this directly
no test coverage detected