aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net.h12
-rw-r--r--src/test/net_tests.cpp2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/net.h b/src/net.h
index 81fbbfd195..e1d8995a8e 100644
--- a/src/net.h
+++ b/src/net.h
@@ -548,17 +548,17 @@ private:
/** Waiting for the other side's public key.
*
- * This is the initial state for initiators. The public key is sent out. When the receiver
- * receives the other side's public key and transitions to GARB_GARBTERM, the sender state
- * becomes READY. */
+ * This is the initial state for initiators. The public key and garbage is sent out. When
+ * the receiver receives the other side's public key and transitions to GARB_GARBTERM, the
+ * sender state becomes READY. */
AWAITING_KEY,
/** Normal sending state.
*
* In this state, the ciphers are initialized, so packets can be sent. When this state is
- * entered, the garbage, garbage terminator, garbage authentication packet, and version
- * packet are appended to the send buffer (in addition to the key which may still be
- * there). In this state a message can be provided if the send buffer is empty. */
+ * entered, the garbage terminator, garbage authentication packet, and version
+ * packet are appended to the send buffer (in addition to the key and garbage which may
+ * still be there). In this state a message can be provided if the send buffer is empty. */
READY,
/** This transport is using v1 fallback.
diff --git a/src/test/net_tests.cpp b/src/test/net_tests.cpp
index eac8e8146a..3eb7bdec62 100644
--- a/src/test/net_tests.cpp
+++ b/src/test/net_tests.cpp
@@ -1021,7 +1021,7 @@ CKey GenerateRandomTestKey() noexcept
* Each V2TransportTester encapsulates a V2Transport (the one being tested), and can be told to
* interact with it. To do so, it also encapsulates a BIP324Cipher to act as the other side. A
* second V2Transport is not used, as doing so would not permit scenarios that involve sending
- * invalid data, or ones scenarios using BIP324 features that are not implemented on the sending
+ * invalid data, or ones using BIP324 features that are not implemented on the sending
* side (like decoy packets).
*/
class V2TransportTester