diff options
author | Gregory Maxwell <greg@xiph.org> | 2017-08-08 20:12:45 +0000 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2017-08-08 20:14:25 +0000 |
commit | f4c3d2c9da76489291df72136a1ec80a5c7c712f (patch) | |
tree | 88180605677aa01831e52eca1ad7a12ddf6f41e5 /src/init.cpp | |
parent | 2507fd55568b361080e9127f40584af2df64f76e (diff) |
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/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
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; |