mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
rpc: describe quality/recency filtering in getnodeaddresses
Co-authored-by: Martin Zumsande <mzumsande@gmail.com>
This commit is contained in:
parent
1337b93f50
commit
7c975614c0
1 changed files with 3 additions and 1 deletions
|
@ -847,7 +847,9 @@ static RPCHelpMan setnetworkactive()
|
|||
static RPCHelpMan getnodeaddresses()
|
||||
{
|
||||
return RPCHelpMan{"getnodeaddresses",
|
||||
"\nReturn known addresses, which can potentially be used to find new nodes in the network.\n",
|
||||
"Return known addresses, after filtering for quality and recency.\n"
|
||||
"These can potentially be used to find new peers in the network.\n"
|
||||
"The total number of addresses known to the node may be higher.",
|
||||
{
|
||||
{"count", RPCArg::Type::NUM, RPCArg::Default{1}, "The maximum number of addresses to return. Specify 0 to return all known addresses."},
|
||||
{"network", RPCArg::Type::STR, RPCArg::DefaultHint{"all networks"}, "Return only addresses of the specified network. Can be one of: " + Join(GetNetworkNames(), ", ") + "."},
|
||||
|
|
Loading…
Add table
Reference in a new issue