From 0d79d11a95f56a6098816cfa5ad21ce83953d620 Mon Sep 17 00:00:00 2001 From: Duke Date: Sat, 28 Jan 2023 08:44:36 -0800 Subject: [PATCH] Use Tor v3 .onion in qa tests --- qa/rpc-tests/proxy_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/rpc-tests/proxy_test.py b/qa/rpc-tests/proxy_test.py index eb69e6bae..dd260b41f 100755 --- a/qa/rpc-tests/proxy_test.py +++ b/qa/rpc-tests/proxy_test.py @@ -102,11 +102,11 @@ class ProxyTest(BitcoinTestFramework): if test_onion: # Test: outgoing onion connection through node - node.addnode("hushostk4e4re.onion:18030", "onetry") + node.addnode("hushv3h6mbxd2pptj42reko3jcexcgnz5zvp3mqcu6myto3jhhn4yzyd.onion:18030", "onetry") cmd = proxies[2].queue.get() assert(isinstance(cmd, Socks5Command)) assert_equal(cmd.atyp, AddressType.DOMAINNAME) - assert_equal(cmd.addr, "hushostk4e4re.onion") + assert_equal(cmd.addr, "hushv3h6mbxd2pptj42reko3jcexcgnz5zvp3mqcu6myto3jhhn4yzyd.onion") assert_equal(cmd.port, 18030) if not auth: assert_equal(cmd.username, None)