From b3734a3bcc06d765a912483c0d02ac72f5f5e957 Mon Sep 17 00:00:00 2001 From: lateminer Date: Wed, 20 Mar 2019 23:26:28 +0300 Subject: [PATCH] Qt: remove test() call in RPCConsole::startExecutor() --- src/qt/rpcconsole.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 787422523..5a1e8eca9 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -757,7 +757,6 @@ void RPCConsole::startExecutor() connect(this, SIGNAL(stopExecutor()), &thread, SLOT(quit())); // - queue executor for deletion (in execution thread) connect(&thread, SIGNAL(finished()), executor, SLOT(deleteLater()), Qt::DirectConnection); - connect(&thread, SIGNAL(finished()), this, SLOT(test()), Qt::DirectConnection); // Default implementation of QThread::run() simply spins up an event loop in the thread, // which is what we want.