We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0127a9b commit a339a37Copy full SHA for a339a37
src/init.cpp
@@ -565,6 +565,9 @@ bool AppInit2(boost::thread_group& threadGroup)
565
// Check for -debugnet (deprecated)
566
if (GetBoolArg("-debugnet", false))
567
InitWarning(_("Warning: Deprecated argument -debugnet ignored, use -debug=net"));
568
+ // Check for -socks - as this is a privacy risk to continue, exit here
569
+ if (mapArgs.count("-socks"))
570
+ return InitError(_("Error: Unsupported argument -socks found. Setting SOCKS version isn't possible anymore, only SOCKS5 proxies are supported."));
571
// Check for -tor - as this is a privacy risk to continue, exit here
572
if (GetBoolArg("-tor", false))
573
return InitError(_("Error: Unsupported argument -tor found, use -onion."));
0 commit comments