mirror of
https://github.com/bitcoin/bips.git
synced 2025-03-01 09:59:47 +01:00
Add bounded limits to blocksize
Choosing 8MB because currently the consensus among miners is 8MB is the largest tolerable size.
This commit is contained in:
parent
314a488b38
commit
ff3d0a98b0
1 changed files with 6 additions and 1 deletions
|
@ -48,6 +48,11 @@ downvoted at no cost by the objecting hash power.
|
||||||
Using difficulty as a penalty is better than a fixed cost in bitcoins because it
|
Using difficulty as a penalty is better than a fixed cost in bitcoins because it
|
||||||
is less predictable.
|
is less predictable.
|
||||||
|
|
||||||
|
In order to prevent miners having complete control over blocksize, an upper
|
||||||
|
limit is required at protocol level. This feature ensures full nodes retain
|
||||||
|
control over consensus, remembering full nodes are the mechanism to keep miners
|
||||||
|
honest.
|
||||||
|
|
||||||
|
|
||||||
==Specification==
|
==Specification==
|
||||||
|
|
||||||
|
@ -81,7 +86,7 @@ the next 2016 blocks.
|
||||||
Blocks that are larger than the calculated base block size limit are invalid and
|
Blocks that are larger than the calculated base block size limit are invalid and
|
||||||
will be rejected.
|
will be rejected.
|
||||||
|
|
||||||
The base block size limit may not reduce below 1MB.
|
The base block size limit may not reduce below 1MB or increase above 8MB.
|
||||||
|
|
||||||
|
|
||||||
==Acknowledgements==
|
==Acknowledgements==
|
||||||
|
|
Loading…
Add table
Reference in a new issue