There is no need to explicitly check tx.nLockTime == 0. If tx.nLockTime is 0, then it will be compared with nBlockHeight, which will only fail if nBlockHeight is 0. nBlockHeight is only 0 for the Genesis block (see https://github.com/bitcoin/bitcoin/blob/f4de89edfa8be4501534fec0c662c650a4ce7ef2/src/validation.cpp#L3544) The Genesis block is fixed and its sequence number is final. Therefore the IsFinalTx will still return true, even if it is called on the Genesis block.
Simplify IsFinalTx logic. #19518
pull roconnor-blockstream wants to merge 1 commits into bitcoin:master from roconnor-blockstream:IsFinalTx changing 1 files +0 −2-
roconnor-blockstream commented at 5:17 pm on July 14, 2020: contributor
-
Simplify IsFinalTx logic.
There is no need to explicitly check tx.nLockTime == 0. If tx.nLockTime is 0, then it will be compared with nBlockHeight, which will only fail if nBlockHeight is 0. nBlockHeight is only 0 for the Genesis block (see https://github.com/bitcoin/bitcoin/blob/f4de89edfa8be4501534fec0c662c650a4ce7ef2/src/validation.cpp#L3544) The Genesis block is fixed and its sequence number is final. Therefore the IsFinalTx will still return true, even if it is called on the Genesis block.
-
JeremyRubin commented at 5:42 pm on July 14, 2020: contributor
This change appears to implement identical logic except in the cases noted.
My preference would be if we’re going to be cleaning up this code, to clean up the gross ternary expression to be easier to read rather than a (modified/validated genesis block excluded) mostly redundant check.
Is there a motivating reason for this change other than code cleanup?
-
roconnor-blockstream commented at 5:51 pm on July 14, 2020: contributorMy personal motivation is that I was trying to interpret the locktime rules in order to work with them. I replicated the logic as it was written here originally, but upon reflection it seemed unnecessarily complex. I cleaned up the logic in my own work and thought I might as well suggest the same clean up for Bitcoin Core while I was on the topic.
-
JeremyRubin commented at 6:01 pm on July 14, 2020: contributorMight be interesting to check out a previous PR I opened which cleaned up consensus logic for similar reasons. #15969 (comment), as it discusses a large number of contributors perceived priorities around simplifying consensus logic.
-
laanwj added the label Validation on Jul 15, 2020
-
sdaftuar commented at 11:40 pm on July 28, 2020: member
I’m a Concept NACK on changes like this.
While this patch seems correct to me, I think that changing consensus code should have a pretty high bar – if there is no discernible benefit to the change (such as performance, or allowing for development of new features), then I’d prefer that we (at most) document our understanding of the logic in cases like this, rather than change it.
If our documentation ends up being wrong, no harm done; if instead an incorrect change to consensus code slips through, we risk splitting the network. As a project, I don’t think it makes sense to spend the effort that would be required to make the latter a sufficiently low-risk choice when compared with the former. Our efforts are better spent on adding features and fixing bugs.
-
MarcoFalke commented at 4:29 am on July 29, 2020: memberToo controversial for a simple fix like this. Closing for now.
-
MarcoFalke closed this on Jul 29, 2020
-
MarcoFalke added the label Refactoring on Jul 29, 2020
-
DrahtBot locked this on Feb 15, 2022
This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-11-17 15:12 UTC
More mirrored repositories can be found on mirror.b10c.me