diff --git a/src/torcontrol.h b/src/torcontrol.h index a0d0009a2..9d47b8d62 100644 --- a/src/torcontrol.h +++ b/src/torcontrol.h @@ -12,7 +12,10 @@ #include "scheduler.h" extern const std::string DEFAULT_TOR_CONTROL; -static const bool DEFAULT_LISTEN_ONION = true; +// Most users don't have Tor, those that do can turn it on +// This help reduce CPU usage, thread contention and helps +// low resource devices +static const bool DEFAULT_LISTEN_ONION = false; void StartTorControl(boost::thread_group& threadGroup, CScheduler& scheduler); void InterruptTorControl();