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/util.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/util.h')
| -rw-r--r-- | src/util.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index 3922872e0..c6a1318fd 100644 --- a/src/util.h +++ b/src/util.h @@ -121,7 +121,6 @@ extern std::map<std::string, std::vector<std::string> > mapMultiArgs; extern bool fDebug; extern bool fPrintToConsole; extern bool fPrintToDebugLog; -extern bool fDaemon; extern bool fServer; extern std::string strMiscWarning; extern bool fNoListen; |