diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-11-09 14:10:50 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-11-09 14:10:50 -0800 |
commit | b41de54a2c6141db621a77877ec7964b05c98700 (patch) | |
tree | 7e8bbdffc0859db3706b8332ffa4ad1896ca5d88 /src/init.cpp | |
parent | 16d9d61f99c2e081585e6634d25da3523804eabf (diff) | |
parent | 92467073adc11a76a26bbb55ccaed454169636f3 (diff) |
Merge pull request #1978 from sipa/nodetach
Remove -detachdb and stop's detach argument.
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index 8151fb2a86..8670ca9d39 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -264,7 +264,6 @@ std::string HelpMessage() " -upnp " + _("Use UPnP to map the listening port (default: 0)") + "\n" + #endif #endif - " -detachdb " + _("Detach block and address databases. Increases shutdown time (default: 0)") + "\n" + " -paytxfee=<amt> " + _("Fee per KB to add to transactions you send") + "\n" + #ifdef QT_GUI " -server " + _("Accept command line and JSON-RPC commands") + "\n" + @@ -407,8 +406,6 @@ bool AppInit2() else fDebugNet = GetBoolArg("-debugnet"); - bitdb.SetDetach(GetBoolArg("-detachdb", false)); - #if !defined(WIN32) && !defined(QT_GUI) fDaemon = GetBoolArg("-daemon"); #else |