aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2023-09-06 15:55:14 +0200
committerTheCharlatan <seb.kung@gmail.com>2023-09-12 22:51:38 +0200
commit534b314a7401d44f51aabd4565f97be9ee411740 (patch)
tree7109128d57dc16dcc99c1c0a5d4ae2553c5ae55a /src/test
parent9be330b654cfbd792620295f3867f592059d6a7a (diff)
downloadbitcoin-534b314a7401d44f51aabd4565f97be9ee411740.tar.xz
kernel: Move MessageStartChars to its own file
The protocol.h file contains many non-consensus related definitions and should thus not be part of the libbitcoinkernel. This commit makes protocol.h no longer a required include for users of the libbitcoinkernel. This commit is part of the libbitcoinkernel project, namely its stage 1 step 3: Decouple most non-consensus headers from libbitcoinkernel. Co-Authored-By: Cory Fields <cory-nospam-@coryfields.com>
Diffstat (limited to 'src/test')
-rw-r--r--src/test/net_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/net_tests.cpp b/src/test/net_tests.cpp
index 3eb7bdec62..34d7867079 100644
--- a/src/test/net_tests.cpp
+++ b/src/test/net_tests.cpp
@@ -1114,7 +1114,7 @@ public:
}
/** Send V1 version message header to the transport. */
- void SendV1Version(const CMessageHeader::MessageStartChars& magic)
+ void SendV1Version(const MessageStartChars& magic)
{
CMessageHeader hdr(magic, "version", 126 + InsecureRandRange(11));
CDataStream ser(SER_NETWORK, CLIENT_VERSION);