From fe323af5168d714d48aa72a906aba8903435f4bd Mon Sep 17 00:00:00 2001 From: Filippo Merli Date: Sat, 3 Sep 2016 20:03:10 +0100 Subject: [PATCH] fixed type error in first table dev reference merkleblock, change 32 bits in 32 bytes refered to the size of a txs or merkle node hash --- _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 82e4e664..074c3730 100644 --- a/_includes/devdoc/ref_p2p_networking.md +++ b/_includes/devdoc/ref_p2p_networking.md @@ -407,7 +407,7 @@ proof of work. | 80 | block header | block_header | The block header in the format described in the [block header section][section block header]. | 4 | transaction count | uint32_t | The number of transactions in the block (including ones that don't match the filter). | *Varies* | hash count | compactSize uint | The number of hashes in the following field. -| *Varies* | hashes | char[32] | One or more hashes of both transactions and merkle nodes in internal byte order. Each hash is 32 bits. +| *Varies* | hashes | char[32] | One or more hashes of both transactions and merkle nodes in internal byte order. Each hash is 32 bytes. | *Varies* | flag byte count | compactSize uint | The number of flag bytes in the following field. | *Varies* | flags | byte[] | A sequence of bits packed eight in a byte with the least significant bit first. May be padded to the nearest byte boundary but must not contain any more bits than that. Used to assign the hashes to particular nodes in the merkle tree as described below.