Update/fix block size limits

Bitcoin limits are usually defined using decimal-friendly numbers of bytes. The block size is limited to 1 MB, not 1 MiB, for example. Also, the latest block size limit is 750 KB, not 350 KB.
This commit is contained in:
theymos 2014-09-26 15:52:10 -05:00
parent fbd5101ae8
commit 8490061706

View file

@ -19,8 +19,8 @@ As of version 2 blocks, each block consists of four root elements:
2. A 4-byte unsigned integer indicating how many bytes follow until the 2. A 4-byte unsigned integer indicating how many bytes follow until the
end of the block. Although this field would suggest maximum block end of the block. Although this field would suggest maximum block
sizes of 4 GiB, max block size is currently capped at 1 MiB and the sizes of 4 GiB, max block size is currently capped at 1 MB and the
default max block size (used by most miners) is 350 KiB (although default max block size (used by most miners) is 750 KB (although
this will likely increase over time). this will likely increase over time).
3. An 80-byte block header described in the section below. 3. An 80-byte block header described in the section below.