From 9e4d0fb8ca72e07689daf9d0e18f48a21fe90c6b Mon Sep 17 00:00:00 2001 From: Will Binns Date: Wed, 22 Mar 2017 07:42:32 -0600 Subject: [PATCH] ref_p2p_networking: Fix protocol version An incorrect protocol version was referenced. It should be `60001`, not `60000`. --- _includes/devdoc/ref_p2p_networking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/devdoc/ref_p2p_networking.md b/_includes/devdoc/ref_p2p_networking.md index 3c84133d..6402175d 100644 --- a/_includes/devdoc/ref_p2p_networking.md +++ b/_includes/devdoc/ref_p2p_networking.md @@ -1175,7 +1175,7 @@ single field, the nonce. | Bytes | Name | Data Type | Description |-------|-------|-----------|--------------- -| 8 | nonce | uint64_t | *Added in protocol version 60000 as described by BIP31.*

Random nonce assigned to this `ping` message. The responding `pong` message will include this nonce to identify the `ping` message to which it is replying. +| 8 | nonce | uint64_t | *Added in protocol version 60001 as described by BIP31.*

Random nonce assigned to this `ping` message. The responding `pong` message will include this nonce to identify the `ping` message to which it is replying. The annotated hexdump below shows a `ping` message. (The message header has been omitted.)