diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2022-05-13 13:35:46 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2022-05-13 13:37:46 +0200 |
commit | 71e4cfefe765c58937b3fd3125782ca8407315d2 (patch) | |
tree | 7d1d25a8cae94e81f9690a19c2c8dd3afe36e314 /test | |
parent | 225e5b57b2ee2bc1acd7f09c89ccccc15ef8c85f (diff) |
test: p2p: add missing BIP157 message types to MESSAGEMAP
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_framework/p2p.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/functional/test_framework/p2p.py b/test/functional/test_framework/p2p.py index 251d3d5eae..fc72a9ab73 100755 --- a/test/functional/test_framework/p2p.py +++ b/test/functional/test_framework/p2p.py @@ -47,6 +47,9 @@ from test_framework.messages import ( msg_getaddr, msg_getblocks, msg_getblocktxn, + msg_getcfcheckpt, + msg_getcfheaders, + msg_getcfilters, msg_getdata, msg_getheaders, msg_headers, @@ -108,6 +111,9 @@ MESSAGEMAP = { b"getaddr": msg_getaddr, b"getblocks": msg_getblocks, b"getblocktxn": msg_getblocktxn, + b"getcfcheckpt": msg_getcfcheckpt, + b"getcfheaders": msg_getcfheaders, + b"getcfilters": msg_getcfilters, b"getdata": msg_getdata, b"getheaders": msg_getheaders, b"headers": msg_headers, |