aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2012-04-26 05:20:57 -0700
committerPieter Wuille <pieter.wuille@gmail.com>2012-04-26 05:20:57 -0700
commite1ea3ce7aaf83a1b8a04d96f6c1477f9a08d0f90 (patch)
tree2b151b9c1453fcdd0da74deb9431ec2db29e15a7 /src/init.cpp
parentc2e8c8acd8ae0c94c70b59f55169841ad195bb99 (diff)
parent83743ed6810cfe6a0c0c260fa2477dffbe05950c (diff)
downloadbitcoin-e1ea3ce7aaf83a1b8a04d96f6c1477f9a08d0f90.tar.xz
Merge pull request #1119 from sipa/fastshutdown
Make lsn_reset ("detach databases") optional and off by default.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp
index e7f1c7c015..0671cd7799 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -200,6 +200,7 @@ bool AppInit2(int argc, char* argv[])
#else
" -upnp \t " + _("Use Universal Plug and Play to map the listening port (default: 0)") + "\n" +
#endif
+ " -detachdb \t " + _("Detach block and address databases. Increases shutdown time (default: 0)") + "\n" +
#endif
" -paytxfee=<amt> \t " + _("Fee per KB to add to transactions you send") + "\n" +
#ifdef QT_GUI
@@ -255,6 +256,7 @@ bool AppInit2(int argc, char* argv[])
}
fDebug = GetBoolArg("-debug");
+ fDetachDB = GetBoolArg("-detachdb", false);
#if !defined(WIN32) && !defined(QT_GUI)
fDaemon = GetBoolArg("-daemon");