diff options
author | darosior <darosior@protonmail.com> | 2019-09-10 22:07:36 +0200 |
---|---|---|
committer | darosior <darosior@protonmail.com> | 2019-09-11 17:25:53 +0200 |
commit | 07a8f65031c448971ee665f3db0fbf883a34465b (patch) | |
tree | 6b30b59b731929679332f9582f4cdd9b3bc9f635 /test/functional/test_framework | |
parent | 1985c4efda56b48f6f9c04f39d69268ee8f0b40a (diff) |
tests: add a test for the 'servicesnames' RPC field
In getpeerinfo and getnetworkinfo
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-x | test/functional/test_framework/messages.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py index 917efaa833..3cb5f56bee 100755 --- a/test/functional/test_framework/messages.py +++ b/test/functional/test_framework/messages.py @@ -43,8 +43,8 @@ COIN = 100000000 # 1 btc in satoshis BIP125_SEQUENCE_NUMBER = 0xfffffffd # Sequence number that is BIP 125 opt-in and BIP 68-opt-out NODE_NETWORK = (1 << 0) -# NODE_GETUTXO = (1 << 1) -# NODE_BLOOM = (1 << 2) +NODE_GETUTXO = (1 << 1) +NODE_BLOOM = (1 << 2) NODE_WITNESS = (1 << 3) NODE_NETWORK_LIMITED = (1 << 10) |