diff options
author | Jon Atack <jon@atack.com> | 2021-05-24 23:19:43 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2021-05-27 19:47:52 +0200 |
commit | 0f1c58ae87d6a3fe81816500e7b8275420d151d0 (patch) | |
tree | 6bf7000046e0dda672a13a75c4ddb7be0ea84886 /test | |
parent | ea1e5c2c714f4b29a83b1eaf8c9e81006b4cee6a (diff) |
test: update feature_proxy to torv3
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/feature_proxy.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/feature_proxy.py b/test/functional/feature_proxy.py index 8bee43b8ad..162814815e 100755 --- a/test/functional/feature_proxy.py +++ b/test/functional/feature_proxy.py @@ -147,13 +147,13 @@ class ProxyTest(BitcoinTestFramework): self.network_test(node, addr, network=NET_IPV6) if test_onion: - addr = "bitcoinostk4e4re.onion:8333" + addr = "pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd.onion:8333" self.log.debug("Test: outgoing onion connection through node for address {}".format(addr)) node.addnode(addr, "onetry") cmd = proxies[2].queue.get() assert isinstance(cmd, Socks5Command) assert_equal(cmd.atyp, AddressType.DOMAINNAME) - assert_equal(cmd.addr, b"bitcoinostk4e4re.onion") + assert_equal(cmd.addr, b"pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd.onion") assert_equal(cmd.port, 8333) if not auth: assert_equal(cmd.username, None) |