aboutsummaryrefslogtreecommitdiff
path: root/test/functional/p2p_v2_transport.py
diff options
context:
space:
mode:
authorstratospher <44024636+stratospher@users.noreply.github.com>2023-11-15 10:38:40 +0530
committerstratospher <44024636+stratospher@users.noreply.github.com>2024-01-23 22:04:55 +0530
commit8d6c848a48530893ca40be5c1285541b3e7a94f3 (patch)
tree9623f102edea8d3791757bc8a1ab1dcf4babe1c5 /test/functional/p2p_v2_transport.py
parent595ad4b16880ae1f23463ca9985381c8eae945d8 (diff)
downloadbitcoin-8d6c848a48530893ca40be5c1285541b3e7a94f3.tar.xz
[test] Move MAGIC_BYTES to messages.py
This avoids circular dependency happening when importing MAGIC_BYTES. Before, p2p.py <--import for EncryptedP2PState-- v2_p2p.py | ^ | | └---------import for MAGIC_BYTES----------┘ Now, MAGIC_BYTES are kept separately in messages.py Co-authored-by: Martin Zumsande <mzumsande@gmail.com>
Diffstat (limited to 'test/functional/p2p_v2_transport.py')
-rwxr-xr-xtest/functional/p2p_v2_transport.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/p2p_v2_transport.py b/test/functional/p2p_v2_transport.py
index 1a3b4a6d0a..09b887f49c 100755
--- a/test/functional/p2p_v2_transport.py
+++ b/test/functional/p2p_v2_transport.py
@@ -7,8 +7,7 @@ Test v2 transport
"""
import socket
-from test_framework.messages import NODE_P2P_V2
-from test_framework.p2p import MAGIC_BYTES
+from test_framework.messages import MAGIC_BYTES, NODE_P2P_V2
from test_framework.test_framework import BitcoinTestFramework
from test_framework.util import (
assert_equal,