From f082410d08d9cdabe5a79135920002cbbbb591f2 Mon Sep 17 00:00:00 2001 From: twisterarmy Date: Wed, 30 Apr 2025 09:24:45 +0300 Subject: [PATCH] remove the incorrect notation, as the binding feature uses the interface address and skips the port during initialization --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 29ee5f96..08752e69b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -206,7 +206,7 @@ std::string HelpMessage() strUsage += " -discover " + _("Discover own IP address (default: 1 when listening and no -externalip)") + "\n"; strUsage += " -checkpoints " + _("Only accept block chain matching built-in checkpoints (default: 1)") + "\n"; strUsage += " -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n"; - strUsage += " -bind= " + _("Bind to given address and always listen on it. Use [host]:port notation for IPv6") + "\n"; + strUsage += " -bind= " + _("Bind to given interface address and always listen on it") + "\n"; strUsage += " -dnsseed " + _("Find peers using DNS lookup (default: 1 unless -connect)") + "\n"; strUsage += " -banscore= " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n"; strUsage += " -bantime= " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n";