aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2024-01-19 03:08:29 +0100
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2024-03-11 15:23:09 +0100
commitc4a67d396d0aa99f658cafe381e39622859eb0be (patch)
tree74f91bef2083b4fd42dfc9779a2f23301fc7fd29 /test/functional/test_framework
parent405ac819af1eb0f6cf6d1805cb668f4e8ab4a6f3 (diff)
downloadbitcoin-c4a67d396d0aa99f658cafe381e39622859eb0be.tar.xz
test: p2p: check disconnect due to lack of desirable service flags
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-xtest/functional/test_framework/messages.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/messages.py b/test/functional/test_framework/messages.py
index 1780678de1..4e496a9275 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -46,6 +46,7 @@ MAX_PROTOCOL_MESSAGE_LENGTH = 4000000 # Maximum length of incoming protocol mes
MAX_HEADERS_RESULTS = 2000 # Number of headers sent in one getheaders result
MAX_INV_SIZE = 50000 # Maximum number of entries in an 'inv' protocol message
+NODE_NONE = 0
NODE_NETWORK = (1 << 0)
NODE_BLOOM = (1 << 2)
NODE_WITNESS = (1 << 3)