Luke-Jr [ARCHIVE] on Nostr: 📅 Original date posted:2012-07-22 📝 Original message:On Monday, July 23, 2012 ...
📅 Original date posted:2012-07-22
📝 Original message:On Monday, July 23, 2012 12:41:15 AM Gavin Andresen wrote:
> > The current block height in coinbase addition currently proposes to use
> > block version 2. However, the protocol change is in fact to the coinbase
> > transaction, not the block itself (which really doesn't have any
> > extensibility without a hardfork anyway). Perhaps we should consider
> > bumping the coinbase transaction version number to 2 for this instead?
>
> I'd thought about bumping the coinbase transaction version, but the
> problem is if we want a smooth rollout then, during the rollout, every
> time a new block comes in the percentage of the last 1,000 blocks that
> support the new version has to be computed.
>
> If that means looking in the coinbase transaction, then either the
> last 1,000 coinbases have to be stored in memory or they have to be
> fetched from disk. Which isn't a huge deal, unless we start
> aggressively pruning spent transactions, and that coinbase 900 blocks
> back got spent and pruned.
Any reason CBlockIndex couldn't cache the coinbase version?
> On Sun, Jul 22, 2012 at 4:52 PM, Luke-Jr <luke at dashjr.org> wrote:
> > It just occurred to me that the block version number could easily be used
> > as a cheap "extra nonce" right now. Considering that we will probably
> > see lots of ASIC miners running at 1 TH/s per rig before the end of
> > 2012, it might be desirable to save the block version for this purpose.
>
> Hmm... I think it'd be ok to give 3 of the 4 block version bytes as a
> simple extranonce, so version=0x00000001 is what we have now, version
> 2 blocks are any with 0x02 in the low byte, 0x03 is version 3, etc. I
> don't think we'll go through 253 block versions before we're all dead.
>
> That'd be 7 bytes of nonce in the block header, which is
> 72,057,594,037,927,936 ~ 72 petahashes = 72,000 terahashes
>
> So: the changes for version 2 blocks would be "has height in the
> coinbase, and has a 1-byte version number with a 3-byte extranonce."
That sounds workable.
> > Also, Jeff noticed that block 190192 has version==2 without a valid block
> > height in the coinbase. I suspect this may be the result of combining the
> > current blockheight-in-coinbase pullreq with P2Pool. This means that if
> > we go forward with the version==2 marker, we will forever need to make
> > an exception for that block.
>
> No, the rules are "enforce the rules when the chain has a
> super-majority." Since block 190192 is in a part of the chain with
> zero other version==2 blocks, the height-in-the-coinbase rule will not
> be enforced.
I was thinking more of the end-game of changing the rule to simply "if
version==2, require the height in coinbase" after the point of no return is
met without any infringement.
Published at
2023-06-07 10:24:17Event JSON
{
"id": "dc32cde140ce9a711d60b6ea8235b522edc7c1279e48fcaa53a2f9ed533df3c7",
"pubkey": "6ac6a519b554d8ff726a301e3daec0b489f443793778feccc6ea7a536f7354f1",
"created_at": 1686133457,
"kind": 1,
"tags": [
[
"e",
"46ab71b248824cbbc954163b8f073f93fecf03ba9fa9ff47dabf828a752960f7",
"",
"root"
],
[
"e",
"4909164eb471ac08e927fad85c497700f81e201d6f37a4aae9d5a6f561f972a9",
"",
"reply"
],
[
"p",
"857f2f78dc1639e711f5ea703a9fc978e22ebd279abdea1861b7daa833512ee4"
]
],
"content": "📅 Original date posted:2012-07-22\n📝 Original message:On Monday, July 23, 2012 12:41:15 AM Gavin Andresen wrote:\n\u003e \u003e The current block height in coinbase addition currently proposes to use\n\u003e \u003e block version 2. However, the protocol change is in fact to the coinbase\n\u003e \u003e transaction, not the block itself (which really doesn't have any\n\u003e \u003e extensibility without a hardfork anyway). Perhaps we should consider\n\u003e \u003e bumping the coinbase transaction version number to 2 for this instead?\n\u003e \n\u003e I'd thought about bumping the coinbase transaction version, but the\n\u003e problem is if we want a smooth rollout then, during the rollout, every\n\u003e time a new block comes in the percentage of the last 1,000 blocks that\n\u003e support the new version has to be computed.\n\u003e \n\u003e If that means looking in the coinbase transaction, then either the\n\u003e last 1,000 coinbases have to be stored in memory or they have to be\n\u003e fetched from disk. Which isn't a huge deal, unless we start\n\u003e aggressively pruning spent transactions, and that coinbase 900 blocks\n\u003e back got spent and pruned.\n\nAny reason CBlockIndex couldn't cache the coinbase version?\n\n\u003e On Sun, Jul 22, 2012 at 4:52 PM, Luke-Jr \u003cluke at dashjr.org\u003e wrote:\n\u003e \u003e It just occurred to me that the block version number could easily be used\n\u003e \u003e as a cheap \"extra nonce\" right now. Considering that we will probably\n\u003e \u003e see lots of ASIC miners running at 1 TH/s per rig before the end of\n\u003e \u003e 2012, it might be desirable to save the block version for this purpose.\n\u003e \n\u003e Hmm... I think it'd be ok to give 3 of the 4 block version bytes as a\n\u003e simple extranonce, so version=0x00000001 is what we have now, version\n\u003e 2 blocks are any with 0x02 in the low byte, 0x03 is version 3, etc. I\n\u003e don't think we'll go through 253 block versions before we're all dead.\n\u003e \n\u003e That'd be 7 bytes of nonce in the block header, which is\n\u003e 72,057,594,037,927,936 ~ 72 petahashes = 72,000 terahashes\n\u003e \n\u003e So: the changes for version 2 blocks would be \"has height in the\n\u003e coinbase, and has a 1-byte version number with a 3-byte extranonce.\"\n\nThat sounds workable.\n\n\u003e \u003e Also, Jeff noticed that block 190192 has version==2 without a valid block\n\u003e \u003e height in the coinbase. I suspect this may be the result of combining the\n\u003e \u003e current blockheight-in-coinbase pullreq with P2Pool. This means that if\n\u003e \u003e we go forward with the version==2 marker, we will forever need to make\n\u003e \u003e an exception for that block.\n\u003e \n\u003e No, the rules are \"enforce the rules when the chain has a\n\u003e super-majority.\" Since block 190192 is in a part of the chain with\n\u003e zero other version==2 blocks, the height-in-the-coinbase rule will not\n\u003e be enforced.\n\nI was thinking more of the end-game of changing the rule to simply \"if \nversion==2, require the height in coinbase\" after the point of no return is \nmet without any infringement.",
"sig": "b81458e5153d250aa366c749ceab6783055282c6ba3ae945f830cf9642da6724c0e6a4db4d996ebc0d1ab9796b053ce4a4c824e104ee3402549a53d3835c0fc5"
}