aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2017-08-08 20:12:45 +0000
committerGregory Maxwell <greg@xiph.org>2017-08-08 20:14:25 +0000
commitf4c3d2c9da76489291df72136a1ec80a5c7c712f (patch)
tree88180605677aa01831e52eca1ad7a12ddf6f41e5 /src
parent2507fd55568b361080e9127f40584af2df64f76e (diff)
downloadbitcoin-f4c3d2c9da76489291df72136a1ec80a5c7c712f.tar.xz
Enable disablesafemode by default.
Safemode is almost useless as is-- it only triggers in limited cases most of which aren't even concerning. There have been several proposals to remove it. But as a simpler, safer, and more flexible first case, simply deactivate it by default. Anyone who wants it can re-enable and know what they've signed up for.
Diffstat (limited to 'src')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index ca62d3e7cc..6fc8af5fbb 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -69,7 +69,7 @@
bool fFeeEstimatesInitialized = false;
static const bool DEFAULT_PROXYRANDOMIZE = true;
static const bool DEFAULT_REST_ENABLE = false;
-static const bool DEFAULT_DISABLE_SAFEMODE = false;
+static const bool DEFAULT_DISABLE_SAFEMODE = true;
static const bool DEFAULT_STOPAFTERBLOCKIMPORT = false;
std::unique_ptr<CConnman> g_connman;