Dynamic coinbase as incentive to fill blocks

2

1

Miners do not currently have a monetary incentive to fill up blocks with transactions (tx fees are negligible compared to the coinbase tx). Those miners that do fill up the blocks may do so with the long-term interests of the network in mind.

It seems clear to me that making the coinbase amount a function of the relative size of the block would result in a much better incentive. I cannot see any obvious drawbacks with it.

A simple formula would be: actual_coinbase = coinbase * (actual_block_size/MAX_BLOCK_SIZE)

For example: actual_coinbase = 25BTC * (512KB/1024KB) = 12.5BTC

Of course the actual implementation would have to take into account consensus issues (rounding, corner cases, etc), but it should be possible.

Why would this not work?

ktorn

Posted 2015-06-22T15:36:59.083

Reputation: 1 205

"tx fees are negligible compared to the coinbase tx" Maybe small, but not negligible. And coinbase will halve next year, while fees and/or number of transactions are on the rise.Jannes 2015-06-22T18:05:31.750

Answers

3

This adds an incentive to fill blocks with ANYTHING that will take up space in the block. There are many different ways to incentivize including transactions, but they can typically be gamed because miners can create transactions themselves, and they gain all the fees from those transactions right back into their coinbase transaction.

Your suggestion, which has good intent, would likely cause miners to be incentivized to fill their blocks with meaningless transactions, and increase the already ever-increasing size of the blockchain, making it harder to run a full node.

morsecoder

Posted 2015-06-22T15:36:59.083

Reputation: 12 624

Good point. Miners would probably still fill the block with genuine transactions as much as possible (3rd party fees still better than own fees) but once the mempool empties the incentive would be to create garbage 'filling' transactions as you say, creating unecessary blockchain bloat, especially with bigger blocks in the future. It won't work. Too bad.ktorn 2015-06-22T16:18:39.660