diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-12-20 11:48:22 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-20 16:07:33 +0100 |
| commit | 8b9adca4461d0cb6bdfca7b74228d430b9b9d116 (patch) | |
| tree | 8c808c370f97b626bc9318a7ece95de2a6525435 /src/init.h | |
| parent | Merge pull request #3439 (diff) | |
| download | discoin-8b9adca4461d0cb6bdfca7b74228d430b9b9d116.tar.xz discoin-8b9adca4461d0cb6bdfca7b74228d430b9b9d116.zip | |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h index 018d2d5ea..2f5692305 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 |