From 54b84c9bdc395d9aad60919cb2f365b7b9e7db1f Mon Sep 17 00:00:00 2001 From: "David A. Harding" Date: Wed, 2 Aug 2023 15:02:37 -1000 Subject: [PATCH] CH11: small correction to relative size diff between header and block Thanks Murchandamus --- ch09.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch09.asciidoc b/ch09.asciidoc index c7708403..af23307d 100644 --- a/ch09.asciidoc +++ b/ch09.asciidoc @@ -77,7 +77,7 @@ 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 total size of all transactions in a block can be up to about 4,000,000 bytes. A complete block, -with all transactions, can therefore be over 50,000 times larger than the block +with all transactions, can therefore be almost 50,000 times larger than the block header. <> describes how Bitcoin Core stores the structure of a block. [[block_structure1]]