diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-11-22 17:40:41 +0000 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2018-11-22 17:41:01 +0000 |
commit | a0f8df365d46d5ef1a397c755e3366899d759efc (patch) | |
tree | 983d24ba7f619806e8f4f298127ea719c7290a9c /src/qt/bitcoin.cpp | |
parent | 708cbb172dbf61dbb14671ffd98be3782cd7cd42 (diff) |
qt: Call noui_connect to prevent boost::signals2::no_slots_error in early calls to InitWarning
Diffstat (limited to 'src/qt/bitcoin.cpp')
-rw-r--r-- | src/qt/bitcoin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index de236a016f..ab8b7a1792 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -561,6 +561,9 @@ int main(int argc, char *argv[]) #endif SetupEnvironment(); + // Connect bitcoind signal handlers + noui_connect(); + std::unique_ptr<interfaces::Node> node = interfaces::MakeNode(); // Do not refer to data directory yet, this can be overridden by Intro::pickDataDirectory |