diff options
| author | tcatm <[email protected]> | 2011-03-03 22:31:44 +0100 |
|---|---|---|
| committer | tcatm <[email protected]> | 2011-03-03 22:31:44 +0100 |
| commit | ea7cd317516a6ec911e6a29bc0407a42a2534251 (patch) | |
| tree | 44e91984912caca2dd7cf4b02c7cc318e25a5de5 /init.cpp | |
| parent | fix whitespace (diff) | |
| download | discoin-ea7cd317516a6ec911e6a29bc0407a42a2534251.tar.xz discoin-ea7cd317516a6ec911e6a29bc0407a42a2534251.zip | |
force fDaemon in bitcoind
Diffstat (limited to 'init.cpp')
| -rw-r--r-- | init.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -199,9 +199,10 @@ bool AppInit2(int argc, char* argv[]) else fServer = GetBoolArg("-server"); - /* force fServer when running without GUI */ + /* force fServer and fDaemon when running without GUI */ #ifndef GUI fServer = true; + fDaemon = true; #endif fPrintToConsole = GetBoolArg("-printtoconsole"); |