rpc: update GetNetworksInfo() to not return unsupported networks

pull/764/head
Jon Atack 4 years ago
parent ba8997fb2e
commit 9a75e1e569
No known key found for this signature in database
GPG Key ID: 4F5721B3D0E3921D

@ -486,11 +486,9 @@ static RPCHelpMan getnettotals()
static UniValue GetNetworksInfo()
{
UniValue networks(UniValue::VARR);
for(int n=0; n<NET_MAX; ++n)
{
for (int n = 0; n < NET_MAX; ++n) {
enum Network network = static_cast<enum Network>(n);
if(network == NET_UNROUTABLE || network == NET_INTERNAL)
continue;
if (network == NET_UNROUTABLE || network == NET_I2P || network == NET_CJDNS || network == NET_INTERNAL) continue;
proxyType proxy;
UniValue obj(UniValue::VOBJ);
GetProxy(network, proxy);

Loading…
Cancel
Save