aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerge-script <fanquake@gmail.com>2024-08-24 18:56:24 +0100
committermerge-script <fanquake@gmail.com>2024-08-24 18:56:24 +0100
commit6d546336e800f7b8990fececab6bc08413f28690 (patch)
tree4601ed8e2c23c7e0e9aa5aadecb0b5b644b58084
parent6441c77e97731f7085267c5ff5e04b2d4d700cbc (diff)
parent3f05a1068d10ffe0f2859cd20c5fc9bc8efa1c70 (diff)
downloadbitcoin-6d546336e800f7b8990fececab6bc08413f28690.tar.xz
Merge bitcoin/bitcoin#30651: fuzz: remove repeated word in note
3f05a1068d10ffe0f2859cd20c5fc9bc8efa1c70 remove repeated word in note (sunerok) Pull request description: Fix typo. ACKs for top commit: maflcko: ACK 3f05a1068d10ffe0f2859cd20c5fc9bc8efa1c70 danielabrozzoni: ACK 3f05a1068d10ffe0f2859cd20c5fc9bc8efa1c70 Tree-SHA512: 709d96ed18608c0ea788b4f0696abad79ab1b81c4f266487d16bbe4cfca5b99b8f7f9a58f830866db9695aa3aebcc6442098b1533d85507729af99709a53d26a
-rw-r--r--src/test/fuzz/p2p_handshake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/p2p_handshake.cpp b/src/test/fuzz/p2p_handshake.cpp
index 217655ab70..6c1ed11d45 100644
--- a/src/test/fuzz/p2p_handshake.cpp
+++ b/src/test/fuzz/p2p_handshake.cpp
@@ -74,7 +74,7 @@ FUZZ_TARGET(p2p_handshake, .init = ::initialize)
{
CNode& connection = *PickValue(fuzzed_data_provider, peers);
if (connection.fDisconnect || connection.fSuccessfullyConnected) {
- // Skip if the the connection was disconnected or if the version
+ // Skip if the connection was disconnected or if the version
// handshake was already completed.
continue;
}