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 2b5a741 commit 3429d67Copy full SHA for 3429d67
src/init.cpp
@@ -660,7 +660,8 @@ void InitParameterInteraction(ArgsManager& args)
660
LogPrintf("%s: parameter interaction: -connect set -> setting -listen=0\n", __func__);
661
}
662
663
- if (args.IsArgSet("-proxy")) {
+ std::string proxy_arg = args.GetArg("-proxy", "");
664
+ if (proxy_arg != "" && proxy_arg != "0") {
665
// to protect privacy, do not listen by default if a default proxy server is specified
666
if (args.SoftSetBoolArg("-listen", false))
667
LogPrintf("%s: parameter interaction: -proxy set -> setting -listen=0\n", __func__);
0 commit comments