| 191 | } |
| 192 | |
| 193 | void SplashScreen::subscribeToCoreSignals() |
| 194 | { |
| 195 | // Connect signals to client |
| 196 | m_handler_init_message = m_node->handleInitMessage(std::bind(InitMessage, this, std::placeholders::_1)); |
| 197 | m_handler_show_progress = m_node->handleShowProgress(std::bind(ShowProgress, this, std::placeholders::_1, std::placeholders::_2, std::placeholders::_3)); |
| 198 | m_handler_init_wallet = m_node->handleInitWallet([this]() { handleLoadWallet(); }); |
| 199 | } |
| 200 | |
| 201 | void SplashScreen::handleLoadWallet() |
| 202 | { |
nothing calls this directly
no test coverage detected