From 8fd9f965d14b969b9ea1490ac7ef1bd00c40d6cb Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Wed, 25 Sep 2024 13:22:27 -0700 Subject: [PATCH] Referring to p2p messages in this context --- protocol/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocol/src/lib.rs b/protocol/src/lib.rs index 7bbb981..0c071c5 100644 --- a/protocol/src/lib.rs +++ b/protocol/src/lib.rs @@ -1,6 +1,6 @@ // SPDX-License-Identifier: MIT OR Apache-2.0 -//! BIP324 encrypted transport for exchanging Bitcoin P2P packets. Much like TLS, a connection begins by exchanging ephemeral +//! BIP324 encrypted transport for exchanging Bitcoin P2P messages. Much like TLS, a connection begins by exchanging ephemeral //! elliptic curve public keys and performing a Diffie-Hellman handshake. Thereafter, each participant derives shared session secrets, and may //! freely exchange encrypted packets. //!