aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2021-09-22 17:06:31 +0200
committerVasil Dimov <vd@FreeBSD.org>2021-11-03 14:41:14 +0100
commit78f456c57677e6a3a839426e211078ddf0b3e194 (patch)
tree2facad8c05428161f9e2c920c47165f533432b24 /test
parentde01e312b333b65b09c8dc72f0cea6295ab8e43f (diff)
net: recognize CJDNS from ParseNetwork()
This allows to use "cjdns" as an argument to the `getnodeaddresses` RPC and to the `-onlynet=` parameter.
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/rpc_net.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/rpc_net.py b/test/functional/rpc_net.py
index 0f3bbce54c..103c064cf0 100755
--- a/test/functional/rpc_net.py
+++ b/test/functional/rpc_net.py
@@ -228,8 +228,8 @@ class NetTest(BitcoinTestFramework):
assert_equal(res[0]["port"], 8333)
assert_equal(res[0]["services"], P2P_SERVICES)
- # Test for the absence of onion and I2P addresses.
- for network in ["onion", "i2p"]:
+ # Test for the absence of onion, I2P and CJDNS addresses.
+ for network in ["onion", "i2p", "cjdns"]:
assert_equal(self.nodes[0].getnodeaddresses(0, network), [])
# Test invalid arguments.