1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2025-01-03 20:30:59 +00:00

Fix block header weight (s/240/320/)

A block header consists of 80 vbytes, which corresponds to
80*4 = 320 weight units.
This commit is contained in:
Sebastian Falbesoner 2024-12-20 13:34:19 +01:00
parent 6d1c26e164
commit 09fdf32e8e

View File

@ -1143,7 +1143,7 @@ _vbytes_, where four units of weight equal one vbyte, providing an easy
comparison to the original _byte_ measurement unit used in legacy
Bitcoin blocks.
Blocks are limited to 4 million weight. The block header takes up 240
Blocks are limited to 4 million weight. The block header takes up 320
weight. An additional field, the transaction count, uses either 4 or
12 weight. All of the remaining weight may be used for transaction
data.