The probable upcoming change to allow increased block sizes is the first planned hard fork in a while (and maybe for a while). It seems a shame to let this opportunity go to waste.
It would be the perfect time to make other changes to the rules. The key would be to focus on low effort/risk changes that have high payoff.
What is the timeline for the block size change? If it was being targeted for the middle of next year, then contributors for hard fork changes could be given a timeline.
Example TimelineEnd February: BIP describing change must be completed
End April: Code (including tests) must be completed
End June: Block size hard fork client is released
The
hard fork wishlist has some.
Block size/SIG OPIn addition to the block size, the number of signature ops per block would have to increase.
Mandatory P2SHThe transaction format could be modified so that input scripts are included for spending legacy transactions.
This would mean that all elements in the UTXO set could be stored as a simple hash.
Clients would have to manually store the scriptPubKeys for any transactions in their wallet. Though for standard transactions, they could be regenerated anyway.
This might be doable with a soft fork though by creating a new tx message and having nodes "upgrade" transactions received from legacy nodes.
Add Input value to transctionsThis is to help with offline wallets. It means that a transaction would have an extra 4 bytes per input to say how much that input was worth. This means that you can tell how much a transactions is spending without having to have the input transaction.
See:
https://bitcointalk.org/index.php?topic=181734.0With a hard fork, it could be implemented with a transactions format change.
Sum Merkle TreeThis is where the sum of all transaction fees in transactions below that node are included.
(Sum_parent | Hash_parent) = {(Sum_left + Sum_right) | Hash(S_left | Hash_left | S_right | Hash_righ)}
This means that random spot checks can be performed to check that inflation has occurred and compact fraud proofs produced.
Changing the header size is likely unacceptable, so the merkle hash could be reduced to 28 bytes instead of 32.
Hash(x) = lower 28 bytes of (SHA256(SHA256(x)))
The sum could be 4 bytes.
If RIPEMD160 is acceptable, then 20 bytes could be used. That would mean that the sum could be 8 bytes, to allow for future proofing.
Auxiliary HeaderThis isn't on the wiki. This would be a change to the merkle tree format. The merkle root entry in the header would be replaced with Hash(Merkle TX Root | Auxiliary Header).
The auxiliary header could be any length and maybe have a key/value system. This would make merged mining easier and help with things like p2pool, where they want to embed extra data in blocks.
It would allow fields to be added without modifying the main header. These headers could be obtained with new messages or extending the get header message.
UTXO CommitmentsThis is where the UTXO set is committed in each block.
If the Auxilary header change was added, then this wouldn't require a further hard fork.
[Edit]
Timewarp FixThis is where the difficulty re-target is based on the time difference between every 2016th block and the block 2015 before it. Ideally, the "end" block on the previous section should be used as the first block for the subsequent section.
I think this could be fixed using a soft fork by requiring that the two blocks have a timestamp within (say) 1 hour of each other.
Increased NonceThis would be where the nonce is made larger. The auxiliary header would allow something similar, since you could change the merkle root without recalculating the entire way down to the coinbase.
[Edit2]
Extend Merkle Tree to TX Inputs and OutputsThe merkle tree currently ends at the transaction level. This means that to prove that a particular output is valid, you need to provide the entire transaction. If the merkle tree continued down to the inputs and outputs of the transaction, then only a merkle path would be required to prove that an output is valid.