aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-12-11 11:56:24 -0500
committerJohn Newbery <john@johnnewbery.com>2017-12-19 11:19:55 -0500
commitdbfe294805a094ba4ed6178a56d0a7588fcd8c27 (patch)
tree23de54a5ac77f2c470e1b58e93e107a848b3a0dd /test/functional/test_framework
parent12853120484e19bbd9cf90574d5eaa9cb46255a5 (diff)
downloadbitcoin-dbfe294805a094ba4ed6178a56d0a7588fcd8c27.tar.xz
[tests] define NODE_NETWORK_LIMITED in test framework
Diffstat (limited to 'test/functional/test_framework')
-rw-r--r--test/functional/test_framework/messages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 2ab1bdac0f..d8032e4430 100644
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -38,10 +38,11 @@ COIN = 100000000 # 1 btc in satoshis
NODE_NETWORK = (1 << 0)
# NODE_GETUTXO = (1 << 1)
-# NODE_BLOOM = (1 << 2)
+NODE_BLOOM = (1 << 2)
NODE_WITNESS = (1 << 3)
NODE_UNSUPPORTED_SERVICE_BIT_5 = (1 << 5)
NODE_UNSUPPORTED_SERVICE_BIT_7 = (1 << 7)
+NODE_NETWORK_LIMITED = (1 << 10)
# Serialization/deserialization tools
def sha256(s):