aboutsummaryrefslogtreecommitdiff
path: root/src/init.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2013-12-20 11:48:22 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2013-12-20 16:07:33 +0100
commit8b9adca4461d0cb6bdfca7b74228d430b9b9d116 (patch)
tree8c808c370f97b626bc9318a7ece95de2a6525435 /src/init.h
parent9e508b55885ba747dce2e3fd5ef4c05572cda0b0 (diff)
downloadbitcoin-8b9adca4461d0cb6bdfca7b74228d430b9b9d116.tar.xz
Allow `-noserver` with bitcoind
Allow running bitcoind without server. - Default to -server mode (of course) for bitcoind with SoftSetBoolArg - Remove fForceServer argument from AppInit2 - Move fDaemon to a static variable in bitcoind
Diffstat (limited to 'src/init.h')
-rw-r--r--src/init.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h
index 018d2d5ea3..2f56923055 100644
--- a/src/init.h
+++ b/src/init.h
@@ -20,7 +20,7 @@ extern CWallet* pwalletMain;
void StartShutdown();
bool ShutdownRequested();
void Shutdown();
-bool AppInit2(boost::thread_group& threadGroup, bool fForceServer);
+bool AppInit2(boost::thread_group& threadGroup);
/* The help message mode determines what help message to show */
enum HelpMessageMode