From a594496c6cdef48835f37e498ebb3ac441490398 Mon Sep 17 00:00:00 2001 From: Himanshu Dabas Date: Wed, 22 Nov 2017 03:59:16 +0530 Subject: [PATCH] updated the "Structure of a Block" updated the value of average transaction size, average transactions in a block and total block size compared to the block header size in accordance with the current structure of the Bitcoin Blockchain. --- ch09.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch09.asciidoc b/ch09.asciidoc index 04da1788..c4678493 100644 --- a/ch09.asciidoc +++ b/ch09.asciidoc @@ -15,7 +15,7 @@ One way to think about the blockchain is like layers in a geological formation, === Structure of a Block -((("blocks", "structure of")))((("blockchain (the)", "block structure")))A block is a container data structure that aggregates transactions for inclusion in the public ledger, the blockchain. The block is made of a header, containing metadata, followed by a long list of transactions that make up the bulk of its size. The block header is 80 bytes, whereas the average transaction is at least 250 bytes and the average block contains more than 500 transactions. A complete block, with all transactions, is therefore 1,000 times larger than the block header. <> describes the structure of a block. +((("blocks", "structure of")))((("blockchain (the)", "block structure")))A block is a container data structure that aggregates transactions for inclusion in the public ledger, the blockchain. The block is made of a header, containing metadata, followed by a long list of transactions that make up the bulk of its size. The block header is 80 bytes, whereas the average transaction is at least 400 bytes and the average block contains more than 1900 transactions. A complete block, with all transactions, is therefore 10,000 times larger than the block header. <> describes the structure of a block. [[block_structure1]] [role="pagebreak-before"]