aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPieter Wuille <pieter@wuille.net>2023-08-22 17:50:59 -0400
committerPieter Wuille <pieter@wuille.net>2023-10-02 18:09:53 -0400
commitabf343b32026c3f8246f98c416e2c6cf5b66aa38 (patch)
treea9adcafb56ee287487780fcfcea8780e308bebaf /test
parente7b0004b375be25096fbaf3d5f6980095a90fc0c (diff)
net: advertise NODE_P2P_V2 if CLI arg -v2transport is on
Co-authored-by: Dhruv Mehta <856960+dhruv@users.noreply.github.com>
Diffstat (limited to 'test')
-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 4d635556f4..8f3aea8785 100755
--- a/test/functional/test_framework/messages.py
+++ b/test/functional/test_framework/messages.py
@@ -52,6 +52,7 @@ NODE_BLOOM = (1 << 2)
NODE_WITNESS = (1 << 3)
NODE_COMPACT_FILTERS = (1 << 6)
NODE_NETWORK_LIMITED = (1 << 10)
+NODE_P2P_V2 = (1 << 11)
MSG_TX = 1
MSG_BLOCK = 2