0100 - Rejected - Standards - June 11, 2015 (11 years, 1 month ago)
11
2015
BIP: 100
Layer: Consensus (hard fork)
Title: Dynamic maximum block size by miner vote
Author: Jeff Garzik <[email protected]>
Tom Harding <[email protected]>
Dagur Valberg Johannsson <[email protected]>
Comments-Summary: No comments yet.
Comments-URI: https://github.com/bitcoin/bips/wiki/Comments:BIP 100
Status: Rejected
Type: Standards Track
Created: 2015-06-11
License: BSD-2-Clause
Replace the static 1M block size hard limit with a hard limit set by coinbase vote, conducted on the same schedule as difficulty retargeting.
Miners directly feel the effects, both positive and negative, of any maximum block size change imposed by their peers. Larger blocks allow more growth in the on-chain ecosystem, while smaller blocks reduce resource requirements network-wide. Miners also act as an efficient proxy for the rest of the ecosystem, since they are paid in the tokens collected for the blocks they create.
A simple deterministic system is specified, whereby a 75% mining supermajority may activate a change to the maximum block size each 2016 blocks. Each change is limited to a 5% increase from the previous block size hard limit, or a decrease of similar magnitude. Among adopting nodes, there will be no disagreement on the evolution of the maximum block size.
The system is compatible with emergent consensus, but whereas under that system a miner may choose to accept any size block, a miner following BIP 100 observes the 75% supermajority rule, and the 5% change limit rule. Excessive-block values signaled by emergent consensus blocks are considered in the calculation of the BIP 100 block size hard limit, and the BIP 100 calculated maximum block size is signaled as an excessive-block value for the benefit of all observers.
hardLimit
is 1000000 bytes, preserving
current system.
hardLimit
is accomplished by encoding a
proposed value, a vote, within a block's coinbase scriptSig, and by
processing the votes contained in the previous retargeting period.
/BIP 100/B[0-9]+/
/BIP 100/B8/
is a vote for a 8000000-byte
hardLimit
.
/EB[0-9]+/
, if any, is accepted as the
megabyte vote.
new hardLimit
is calculated after each difficulty
adjustment period of 2016 blocks, and applies to the next 2016
blocks.
current hardLimit
.
hardLimit
raise value
is defined as the vote of the 1512th
highest block, converted to bytes.
raise value
is greater than
(
current hardLimit
* 1.05) rounded down, it is set to that
value.
raise value
is greater than
current hardLimit
, the
raise value
becomes the
new hardLimit
and the recalculation is complete.
hardLimit
lower value
is defined as the vote of the 1512th
lowest block, converted to bytes.
lower value
is less than
(
current hardLimit
/ 1.05) rounded down, it is set to that
value.
lower value
is less than
current hardLimit
, the
lower value
becomes the
new hardLimit
and the recalculation is complete.
new hardLimit
remains the same as
current hardLimit
.
hardLimit
hardLimit
be published. Example: a complete coinbase string
might read
/BIP 100/B8/EB2.123456/
hardLimit
of 2.123456 megabytes for the block containing
the coinbase string.
This BIP is presumed deployed and activated as of block height 449568 by implementing nodes on the bitcoin mainnet. It has no effect until a raise value different from 1M is observed, which requires at least 1512 of 2016 blocks to vote differently from 1M.
The first block larger than 1M will create a network partition, as nodes with a fixed 1M hard limit reject that block.
https://github.com/bitcoinxt/bitcoinxt/pull/188 https://github.com/bitcoinxt/bitcoin/pull/1 https://github.com/BitcoinUnlimited/BitcoinUnlimited/pull/398
This document is licensed under the BSD 2-clause license.