Auto merge of #1863 - str4d:1795-config-flag-disable-miner, r=bitcartel

Add compile flag to disable compilation of mining code

Closes #1795
This commit is contained in:
zkbot
2017-02-09 17:43:43 +00:00
15 changed files with 107 additions and 14 deletions

View File

@@ -163,7 +163,9 @@ void Shutdown()
#ifdef ENABLE_WALLET
if (pwalletMain)
pwalletMain->Flush(false);
#ifdef ENABLE_MINING
GenerateBitcoins(false, NULL, 0);
#endif
#endif
StopNode();
UnregisterNodeSignals(GetNodeSignals());
@@ -1505,7 +1507,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
boost::ref(cs_main), boost::cref(pindexBestHeader), nPowTargetSpacing);
scheduler.scheduleEvery(f, nPowTargetSpacing);
#ifdef ENABLE_WALLET
#if defined(ENABLE_WALLET) && defined(ENABLE_MINING)
// Generate coins in the background
if (pwalletMain)
GenerateBitcoins(GetBoolArg("-gen", false), pwalletMain, GetArg("-genproclimit", 1));