From 519cae8fd6e44aef3470415d7c5e12acb0acd9f4 Mon Sep 17 00:00:00 2001 From: Russell Yanofsky Date: Mon, 6 Jul 2020 10:36:15 -0400 Subject: gui: Delay interfaces::Node initialization This is needed to allow bitcoin-gui to connect to existing node process with -ipcconnect instead of spawning a new process. It's possible to spawn a new bitcoin-node process without knowing the current data dir or network, but connecting to an existing bitcoin-node requires knowing the datadir and network first. --- src/qt/splashscreen.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/qt/splashscreen.cpp') diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index 50fe8eb28b..bd63d6e7fb 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -139,10 +139,12 @@ void SplashScreen::setNode(interfaces::Node& node) assert(!m_node); m_node = &node; subscribeToCoreSignals(); + if (m_shutdown) m_node->startShutdown(); } void SplashScreen::shutdown() { + m_shutdown = true; if (m_node) m_node->startShutdown(); } -- cgit v1.2.3