From 26ec979fa3f2a02828d8f8c5df2f686f7fa1c146 Mon Sep 17 00:00:00 2001 From: Pasta Date: Wed, 19 Jun 2019 20:42:07 -0500 Subject: [PATCH] remove TheadSendAlert in init.cpp Signed-off-by: Pasta --- src/init.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 95c9d900cd..3cb8cb0109 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -97,8 +97,6 @@ #include "zmq/zmqnotificationinterface.h" #endif -extern void ThreadSendAlert(CConnman& connman); - bool fFeeEstimatesInitialized = false; static const bool DEFAULT_PROXYRANDOMIZE = true; static const bool DEFAULT_REST_ENABLE = false; @@ -2162,7 +2160,5 @@ bool AppInitMain(boost::thread_group& threadGroup, CScheduler& scheduler) pwalletMain->postInitProcess(scheduler); #endif - threadGroup.create_thread(boost::bind(&ThreadSendAlert, boost::ref(connman))); - return !fRequestShutdown; }