-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Open
Labels
Description
There are currently multiple places in the --help
or error output of bitcoind
, that we reference markdown documentation, that we don't ship with the binaries. i.e:
Line 525 in ff1ee10
argsman.AddArg("-cjdnsreachable", "If set, then this host is configured for CJDNS (connecting to fc00::/8 addresses would lead us to the CJDNS network, see doc/cjdns.md) (default: 0)", ArgsManager::ALLOW_ANY, OptionsCategory::CONNECTION); |
Line 551 in ff1ee10
argsman.AddArg("-port=<port>", strprintf("Listen for connections on <port> (default: %u, testnet3: %u, testnet4: %u, signet: %u, regtest: %u). Not relevant for I2P (see doc/i2p.md). If set to a value x, the default onion listening port will be set to x+1.", defaultChainParams->GetDefaultPort(), testnetChainParams->GetDefaultPort(), testnet4ChainParams->GetDefaultPort(), signetChainParams->GetDefaultPort(), regtestChainParams->GetDefaultPort()), ArgsManager::ALLOW_ANY | ArgsManager::NETWORK_ONLY, OptionsCategory::CONNECTION); |
Line 1900 in ff1ee10
"doc/p2p-bad-ports.md for details and a full list."), |
Line 69 in ff1ee10
argsman.AddArg("-signer=<cmd>", "External signing tool, see doc/external-signer.md", ArgsManager::ALLOW_ANY, OptionsCategory::WALLET); |
We should either remove these references, or ship this documentation.
hodlinator