diff options
author | tcatm <tcatm@gawab.com> | 2011-03-03 22:31:44 +0100 |
---|---|---|
committer | tcatm <tcatm@gawab.com> | 2011-03-03 22:31:44 +0100 |
commit | ea7cd317516a6ec911e6a29bc0407a42a2534251 (patch) | |
tree | 44e91984912caca2dd7cf4b02c7cc318e25a5de5 | |
parent | a79409afa9c552eb5117d3474ba8dde1a649ce08 (diff) |
force fDaemon in bitcoind
-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"); |