diff --git a/home.md b/home.md index adcbb18..9210e3f 100644 --- a/home.md +++ b/home.md @@ -79,7 +79,7 @@ - Peer-to-Peer Network - [Messages](/protocol/network/messages) - [Handshake: Version (“version”)](/protocol/network/messages/version) - - verack + - [Handshake: Acknowledge ("verack")](/protocol/network/messages/verack) - ping - pong - addr diff --git a/protocol/network/messages/verack.md b/protocol/network/messages/verack.md new file mode 100644 index 0000000..121f82c --- /dev/null +++ b/protocol/network/messages/verack.md @@ -0,0 +1,5 @@ +# Handshake: Acknowledge ("verack") + +The `verack` message is sent in reply to a [version](/protocol/network/messages/version) message. Sending a `verack` in response to a `version` message indicates to the remote that its connection and version has been accepted. There is no version negotiation functionality between nodes; therefore if the node does not accept the version supplied by the remote then the node disconnects instead of responding with a `verack`. + +This `verack` message consists of only a message header; the command string is "verack". \ No newline at end of file