Fixes to integrate sendalert.cpp.

Add sendalert.cpp to build process.
Add alertkeys.h as a placeholder for private keys.
This commit is contained in:
Simon
2016-07-15 19:57:55 -07:00
parent 2513363e81
commit b39e1bdbca
4 changed files with 68 additions and 8 deletions

View File

@@ -52,6 +52,8 @@
using namespace std;
extern void ThreadSendAlert();
ZCJoinSplit* pzcashParams = NULL;
#ifdef ENABLE_WALLET
@@ -1491,5 +1493,8 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
}
#endif
// SENDALERT
threadGroup.create_thread(boost::bind(ThreadSendAlert));
return !fRequestShutdown;
}