diff options
author | Jon Atack <jon@atack.com> | 2021-09-19 14:11:09 +0200 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2021-09-19 14:20:48 +0200 |
commit | b69a106bcd8ddefdb810df6ebb3625c430197e04 (patch) | |
tree | c24d087588d9905e1a14ce769326b916019cf3c3 /test/functional/p2p_addrv2_relay.py | |
parent | de2af19dc8e8c848afbc4b43b9b4092fe263364f (diff) |
test: use test_framework.p2p P2P_SERVICES in functional tests
Diffstat (limited to 'test/functional/p2p_addrv2_relay.py')
-rwxr-xr-x | test/functional/p2p_addrv2_relay.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/functional/p2p_addrv2_relay.py b/test/functional/p2p_addrv2_relay.py index 32c1d42b1c..3833c58680 100755 --- a/test/functional/p2p_addrv2_relay.py +++ b/test/functional/p2p_addrv2_relay.py @@ -11,10 +11,11 @@ import time from test_framework.messages import ( CAddress, msg_addrv2, - NODE_NETWORK, - NODE_WITNESS, ) -from test_framework.p2p import P2PInterface +from test_framework.p2p import ( + P2PInterface, + P2P_SERVICES, +) from test_framework.test_framework import BitcoinTestFramework from test_framework.util import assert_equal @@ -24,7 +25,7 @@ ADDRS = [] for i in range(10): addr = CAddress() addr.time = int(time.time()) + i - addr.nServices = NODE_NETWORK | NODE_WITNESS + addr.nServices = P2P_SERVICES # Add one I2P address at an arbitrary position. if i == 5: addr.net = addr.NET_I2P |