Eric Voskuil [ARCHIVE] on Nostr: 📅 Original date posted:2017-04-11 📝 Original message:-----BEGIN PGP SIGNED ...
📅 Original date posted:2017-04-11
📝 Original message:-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
On 04/11/2017 01:43 AM, Tomas wrote:
> Splitting transactions only happens *on storage* and is just a
> minor optimization compared to storing them in full.
Ok
> Sure, we can still call switching tips a "reorg". And it is indeed
> a trade off as orphan blocks are stored, but a block in the spend
> tree takes only ~12kb and contains the required state information.
>
It's not the headers/tx-hashes of the blocks that I'm referring to, it
is the confirmation and spend information relative to all txs and all
outputs for each branch. This reverse navigation (i.e. utxo
information) is essential, must be persistent and is branch-relative.
> The blockchain is - by design - only eventually consistent across
> nodes. Even if nodes would use the same "tip-selection" rules, you
> cannot rely on all blocks being propagated and hence each
> transaction having the same number of confirmations across all
> nodes.
>
> As a simpler example, if two miners both mine a block at
> approximately the same time and send it to each other, then surely
> they would want to continue mining on their own block. Otherwise
> they would be throwing away their own reward.
That's not your concurrent validation scenario. In the scenario you
described, the person chooses the weaker block of two that require
validation because it's better somehow, not because it's his own
(which does not require validation).
> And yes, this can also happen over multiple blocks, but the chances
> of consistency are vastly increased with each confirmation.
Consistency is reached, despite seeing things at different times,
because people use the same rules. If the economy ran on arbitrary
block preference consistency would be elusive.
> I am not talking about rejecting blocks, I am only talking choosing
> on which tip to mine.
This line of reasoning has me a bit baffled. Yet as I said, it's not
important to the question at hand. It is not likely to be optimal to
validate concurrently even if you consider selection of a weaker block
advantageous.
>> If you intend this to be useful it has to help build the chain,
>> not just rely on hardwiring checkpoints once rule changes are
>> presumed to be buried deeply enough to do so (as the result of
>> other implementations ).
>>
>> I understand this approach, it was ours at one time. There is a
>> significant difference, and your design is to some degree based
>> on a failure to fully consider this. I encourage you to not
>> assume any consensus-related detail is too small.
>
> I am not failing to consider this, and I don't consider this too
> small . But ensuring contextual transaction validity by "validate
> => valid with rules X,Y,Z" and then checking the active rules
> (softfork activation) on order validation, will give logically the
> same results as "validate with X,Y,Z => valid". This is not
> "hardwiring checkpoints" at all.
Storing the validation flags with each tx is exactly what libbitcoin
does (otherwise pre-validation would be infeasible). But that was not
the full point. You said on this in response previously:
>>> ...height-based compliance as meta data of validation seems to
>>> be
adequate and safe.
I read this as encoding the height at which a fork historically
activated. If you intend to track activation for each branch that will
not be "height-based" it will be history based.
e
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux)
iQEcBAEBCAAGBQJY7KTHAAoJEDzYwH8LXOFOI+QH/RzX++1TNLC9DEMWioE7SmMj
yKOrP8WEkOnnrZdFKxVmwV9oZBekEvDABMnJmFiW5TMjsmPz7XwKAYzV0Y5L5oGU
fZYo3IOPyr0dA9TcpP15gNziR6pFUBq/QTYB6BcbUvvlkJv6xjgIdedgDMEyREWU
Hm/JU5g7gQUQd6MIDWbQ9FbYjtPuNSRQi851YfIn5mDivT4HuidaqQYMd9t5yS2Z
FuoQBI6L5GTJIqml1bTwJ0wsA7+ZseBEgMn1TT1ehy2v1FFJTojTpzIwG+m3eiXg
TxN3U/+fNAj+sKBb8Hq+nb7DvgjvKHyHuyRryBju7yq5d5rsb6meXcoiOtAznP8=
=fRXf
-----END PGP SIGNATURE-----
Published at
2023-06-07 17:59:36Event JSON
{
"id": "df9416f1ef4c86ff6daf5e2d529d92a7a02a6ebdadd6b2c7baf5093b857645e1",
"pubkey": "82205f272f995d9be742779a3c19a2ae08522ca14824c3a3b01525fb5459161e",
"created_at": 1686160776,
"kind": 1,
"tags": [
[
"e",
"d4a682be1f6603f0ff8798c52b7225cac6554e21f3aedb0c80e7d41cf71983ad",
"",
"root"
],
[
"e",
"6676d59ded632d698079d1827f1d504f119d0718e6f8d0259072d4c40d35c9cf",
"",
"reply"
],
[
"p",
"1c03575343555d1132a621c49466190d680da4a306ba8b992e8b87e267609cdd"
]
],
"content": "📅 Original date posted:2017-04-11\n📝 Original message:-----BEGIN PGP SIGNED MESSAGE-----\nHash: SHA256\n\nOn 04/11/2017 01:43 AM, Tomas wrote:\n\u003e Splitting transactions only happens *on storage* and is just a\n\u003e minor optimization compared to storing them in full.\n\nOk\n\n\u003e Sure, we can still call switching tips a \"reorg\". And it is indeed\n\u003e a trade off as orphan blocks are stored, but a block in the spend\n\u003e tree takes only ~12kb and contains the required state information.\n\u003e \nIt's not the headers/tx-hashes of the blocks that I'm referring to, it\nis the confirmation and spend information relative to all txs and all\noutputs for each branch. This reverse navigation (i.e. utxo\ninformation) is essential, must be persistent and is branch-relative.\n\n\u003e The blockchain is - by design - only eventually consistent across\n\u003e nodes. Even if nodes would use the same \"tip-selection\" rules, you\n\u003e cannot rely on all blocks being propagated and hence each\n\u003e transaction having the same number of confirmations across all\n\u003e nodes.\n\u003e \n\u003e As a simpler example, if two miners both mine a block at\n\u003e approximately the same time and send it to each other, then surely\n\u003e they would want to continue mining on their own block. Otherwise\n\u003e they would be throwing away their own reward.\n\nThat's not your concurrent validation scenario. In the scenario you\ndescribed, the person chooses the weaker block of two that require\nvalidation because it's better somehow, not because it's his own\n(which does not require validation).\n\n\u003e And yes, this can also happen over multiple blocks, but the chances\n\u003e of consistency are vastly increased with each confirmation.\n\nConsistency is reached, despite seeing things at different times,\nbecause people use the same rules. If the economy ran on arbitrary\nblock preference consistency would be elusive.\n\n\u003e I am not talking about rejecting blocks, I am only talking choosing\n\u003e on which tip to mine.\n\nThis line of reasoning has me a bit baffled. Yet as I said, it's not\nimportant to the question at hand. It is not likely to be optimal to\nvalidate concurrently even if you consider selection of a weaker block\nadvantageous.\n\n\u003e\u003e If you intend this to be useful it has to help build the chain,\n\u003e\u003e not just rely on hardwiring checkpoints once rule changes are\n\u003e\u003e presumed to be buried deeply enough to do so (as the result of\n\u003e\u003e other implementations ).\n\u003e\u003e \n\u003e\u003e I understand this approach, it was ours at one time. There is a \n\u003e\u003e significant difference, and your design is to some degree based\n\u003e\u003e on a failure to fully consider this. I encourage you to not\n\u003e\u003e assume any consensus-related detail is too small.\n\u003e \n\u003e I am not failing to consider this, and I don't consider this too\n\u003e small . But ensuring contextual transaction validity by \"validate\n\u003e =\u003e valid with rules X,Y,Z\" and then checking the active rules\n\u003e (softfork activation) on order validation, will give logically the\n\u003e same results as \"validate with X,Y,Z =\u003e valid\". This is not\n\u003e \"hardwiring checkpoints\" at all.\n\nStoring the validation flags with each tx is exactly what libbitcoin\ndoes (otherwise pre-validation would be infeasible). But that was not\nthe full point. You said on this in response previously:\n\n\u003e\u003e\u003e ...height-based compliance as meta data of validation seems to\n\u003e\u003e\u003e be\nadequate and safe.\n\nI read this as encoding the height at which a fork historically\nactivated. If you intend to track activation for each branch that will\nnot be \"height-based\" it will be history based.\n\ne\n-----BEGIN PGP SIGNATURE-----\nVersion: GnuPG v2.0.22 (GNU/Linux)\n\niQEcBAEBCAAGBQJY7KTHAAoJEDzYwH8LXOFOI+QH/RzX++1TNLC9DEMWioE7SmMj\nyKOrP8WEkOnnrZdFKxVmwV9oZBekEvDABMnJmFiW5TMjsmPz7XwKAYzV0Y5L5oGU\nfZYo3IOPyr0dA9TcpP15gNziR6pFUBq/QTYB6BcbUvvlkJv6xjgIdedgDMEyREWU\nHm/JU5g7gQUQd6MIDWbQ9FbYjtPuNSRQi851YfIn5mDivT4HuidaqQYMd9t5yS2Z\nFuoQBI6L5GTJIqml1bTwJ0wsA7+ZseBEgMn1TT1ehy2v1FFJTojTpzIwG+m3eiXg\nTxN3U/+fNAj+sKBb8Hq+nb7DvgjvKHyHuyRryBju7yq5d5rsb6meXcoiOtAznP8=\n=fRXf\n-----END PGP SIGNATURE-----",
"sig": "1588e416b68d4cd9529e36cfccb958b6c8988945facd58f05b482558d0c1cbcb186cbb5750263f78ba05cec7fa9b4148016066586d0fb074b098a7aba3a7b322"
}