BIP-110: document P2A empty-witness consensus rule #2218

pull jarolrod wants to merge 1 commits into bitcoin:master from jarolrod:8th-consensus-rule changing 3 files +126 −6
  1. jarolrod commented at 4:28 PM on July 26, 2026: none

    BIP 110 currently lists seven consensus rules. The Bitcoin Knots implementation developed before BIP 110 reached Complete status added an eighth rule: while the deployment is active, a spend of a non-grandfathered Pay-to-Anchor (P2A) output is invalid if that input's witness stack is non-empty. This pull request brings the BIP's text and test vectors into line with that existing implementation.

    The P2A rule (8th BIP110 consensus rule) was authored on Feb 12, 2026 and merged into 29.x-knots on May 2, 2026; both before BIP 110 became Complete.

    BIP 3 classifies an incompatible specification change as a MAJOR version increment. Therefore, this PR updates the version to 2.0.0

    The generator adds four 8th rule cases:

    Vector Expected result
    Post-activation P2A output, empty witness stack Valid
    Post-activation P2A output, one empty witness element Invalid
    Post-activation P2A output, one one-byte witness element Invalid
    Pre-activation P2A output, non-empty witness stack Valid under UTXO grandfathering

    The generator was run against a local Bitcoin Knots build with REDUCED_DATA active at regtest height 432.

  2. BIP-110: document P2A empty-witness consensus rule
    BIP 110 version 1.0.0 documents seven consensus rules, but Knots, which
    serves as the reference implementation client for this BIP, commit
    38996fb added an eighth before the BIP reached Complete.
    
    The 8th undocumented rule asserts that during the active deployment, a
    spend of a non-grandfathered P2A output is invalid when its witness
    stack is non-empty.
    
    This adds the missing consensus rule to the BIP, explain its
    relationship to BIP 433 policy and UTXO grandfathering, and links the
    Knots implementation.
    
    Additionally, we add vectors for an empty stack, a stack containing an
    empty element, a one-byte element, and a grandfathered
    pre-activation P2A output.
    
    Additionally, Add the proper "Version: 2.0.0" header.
    d347d84132
  3. jarolrod commented at 4:29 PM on July 26, 2026: none

    this conflicts with #2203 as I introduce the version header here

    I can remove here if you want to keep it a part of that PR instead.

  4. jonatack added the label Bug fix on Jul 26, 2026
  5. jonatack commented at 4:50 PM on July 26, 2026: member

    Concept ACK. Thanks for adding tests. My understanding is that this is an unintended discrepancy between BIP 110 and the implementation in Knots that was discovered by the PR author during a commissioned review, and it's good that such review is taking place. It seems important to align the BIP and the implementation in Knots for the case if BIP 110 were to activate with the current Knots implementation and another bitcoin client implemented the BIP. Pinging @dathonohm for feedback or sign-off.

  6. jonatack commented at 4:52 PM on July 26, 2026: member

    this conflicts with #2203 as I introduce the version header here

    I can remove here if you want to keep it a part of that PR instead.

    No worries, I can rebase/update there.

  7. jonatack added the label Proposed BIP modification on Jul 26, 2026
  8. jonatack added the label Pending acceptance on Jul 26, 2026
  9. luke-jr commented at 5:18 PM on July 26, 2026: member

    Concept NACK. There is no "8th rule", this is just the definition of P2A, as (poorly phrased but) specified in BIP 433.

  10. jarolrod commented at 5:24 PM on July 26, 2026: none

    @luke-jr

    Concept NACK. There is no "8th rule", this is just the definition of P2A, as (poorly phrased but) specified in BIP 433.

    The definition of P2A in BIP 433 states

    P2A inputs are considered standard by Bitcoin Core for spending if no witness data is attached. This avoids meaningless witness padding. Consensus meaning is unchanged.

    This states that standardness for this transaction is that it have no witness data; but it is not a consensus meaning. The authors of BIP 433 go even further to explicitly state "Consensus meaning is unchanged."

    As such bitcoin core does not make the change implemented here

    Implementing this is a new consensus change, that goes against BIP 433.

    It's really quite clear.

  11. luke-jr commented at 5:28 PM on July 26, 2026: member

    BIP 433 only standardizes the definition of P2A. The specification includes the empty witness when spending.

    BIP 110 turns it into a de facto consensus rule by way of Rule 3.

    This is quite clear to any honest reading. If you want to clarify it further, idc, but it's not a material change.

  12. jarolrod commented at 5:42 PM on July 26, 2026: none

    3 only standardizes the definition of P2A. The specification includes the empty witness when spending.

    BIP 110 turns it into a de facto consensus rule by way of Rule 3.

    This is quite clear to any honest reading. If you want to clarify it further, idc, but it's not a material change.

    the change in https://github.com/bitcoinknots/bitcoin/commit/38996fb57a695f45af44e85bba265508fc598088 explicitly goes against the consensus meaning of p2a as defined in bip 433

    Additionally your logic here does not derive from rule 3

    Where rule 3 says

    invalid := undefined_witness_or_tapleaf_version
    

    Commit https://github.com/bitcoinknots/bitcoin/commit/38996fb57a695f45af44e85bba265508fc598088 says

    invalid := invalid || (is_p2a && !witness_stack.empty())
    

    This is a new independent rule that cannot be derived or extended from rule 3

  13. dathonohm commented at 7:51 PM on July 26, 2026: contributor

    Agree with Luke, this appears to be based on a misreading of BIP-433, which requires an empty witness. The spec is already correct.

    However, if the author would like to clarify rule 3 to prevent others from making the same misreading, I will accept that. The additional test vectors also look useful, though I would require that references to "Rule 8" be eliminated.

  14. Rob1Ham commented at 1:36 AM on July 27, 2026: none

    Concept ACK

    I'm not sure why non authors of BIP 433 get to authoritatively declare a meaning that exists outside of the documentation.

    I concur with @jarolrod's reading of the BIP, and 110's inconsistent integration of BIP 433 rules is a 110 issue, not 433.

  15. cbspears commented at 1:42 AM on July 27, 2026: none

    Concept ACK

  16. rot13maxi commented at 2:18 AM on July 27, 2026: none

    Thanks for adding this @jarolrod. This change is helpful to wallet and protocol developers who want to make sure their anchor outputs work on both chains.

  17. lifofifoX commented at 2:34 AM on July 27, 2026: none

    Going by this statement from @dathonohm, they seem to misunderstand the meaning of what constitutes a P2A spend.

    <img width="592" height="205" alt="image" src="https://github.com/user-attachments/assets/5b66a659-90d4-45e4-9630-29caa2c909dc" />

    As per BIP 433, P2A is a new standard output script, and its definition is not dependent on how it's spent. Thanks @jarolrod for addressing this.

  18. rodpalmerhodl commented at 12:34 PM on July 27, 2026: none

    Concept ACK

  19. instagibbs commented at 1:48 PM on July 27, 2026: member

    Obviously I'm biased, but I think the text is quite clear?

    "Specification A P2A output is defined as one with the scriptPubKey

    OP_1 <0x4e73>[1]

    corresponding to the addresses bc1pfeessrawgf on Bitcoin mainnet, <tb1pfees9rn5nz on public testnets, and bcrt1pfeesnyr2tx on regtest.

    P2A inputs are considered standard by Bitcoin Core for spending if no witness data is attached. This avoids meaningless witness padding. Consensus meaning is unchanged."

    There is only one condition to call something a P2A listed, and it explicitly calls out that padding the witness doesn't change the output template type.

    I'll entertain a PR to update wording naturally if there's a solid idea to make it less confusing? I will not change the definition to mean P2A must have no witness, that is not the intention.

  20. jonatack commented at 3:51 PM on July 27, 2026: member

    Approach ACK, utACK d347d84132ea7d3efcc778323fccfa94f0a60033

    I'm agnostic on the semantics discussion on whether to expand rule 3 or describe a new one as done here, modulo that this approach is more explicit and likely clearer to implementers. It was also appended separately later in Knots as well, and was one of 8 rules in the PR to bitcoin core description by the BIP author (image below). It makes sense and is helpful, so non-judgmental ACK from me.


    <img width="690" height="304" alt="Screenshot 2026-07-27 at 10 12 35 AM" src="https://github.com/user-attachments/assets/edbb7533-724e-4e20-9011-6b12dd20e0b3" />

  21. dathonohm commented at 10:15 PM on July 27, 2026: contributor

    @instagibbs: "P2A" as a concept is only a policy carveout, which includes both the expected output format, and the expected spend format. BIP-110 elevates this policy carveout to the consensus level. P2A does not exist as a consensus concept, so the note about the consensus meaning being "unchanged" is confusing; it is not clear what "consensus meaning" would even refer to here.

    Anyway, I think "spends of P2A outputs that are not empty are undefined" is a completely reasonable reading of BIP-433 since, again, P2A is only defined by Bitcoin Core's unconditional policy rules. @jonatack: It made sense to put the P2A rule by itself on the PR description, since Rule 3 is not included either. The third bullet point combines Rules 3 and 6 by describing the variable names used rather than reiterating the exact rules as specified on BIP-110. This was to give reviewers more detail about the actual implementation changes, to assist them in their reviews. Of course, all of this could have been clarified if Core maintainers had left the PR open for longer than 5 seconds. Indeed, that PR with that description was submitted over 4 months ago now, so any ambiguity would have been long since resolved.

    I will consider accepting this PR as is if BIP-433 is clarified first to explicitly state that P2A spends without an empty witness are still considered P2A spends; otherwise I will accept a modified version of this PR that drops Rule 8 and clarifies Rule 3 instead.

  22. instagibbs commented at 10:36 PM on July 27, 2026: member

    P2A does not exist as a consensus concept, so the note about the consensus meaning being "unchanged" is confusing;

    The BIP prescribes no new consensus meaning, so it is unchanged. It's meant to precisely guarding a mis-reading of it to think that P2A spends cannot have witness data. If it helps to say something more like "continues to have no enforced consensus meaning" or similar, that could make sense.

    I will consider accepting this PR as is if BIP-433 is clarified first to explicitly state that P2A spends without an empty witness are still considered P2A spends

    I'm still unaware where the confusion stems from. Please just open a PR with your suggestion and I'll take a look, but the spec I copied and pasted is very short, black and white.

  23. jonatack commented at 12:15 AM on July 28, 2026: member

    otherwise I will accept a modified version of this PR that drops Rule 8 and clarifies Rule 3 instead

    I did ask @jarolrod what that might look like, and from I saw it did not look preferable. I'll leave it to Jarol to fill in more details on that, if he wishes.

  24. jarolrod commented at 12:49 AM on July 28, 2026: none

    @dathonohm

    Anyway, I think "spends of P2A outputs that are not empty are undefined" is a completely reasonable reading of BIP-433 since, again, P2A is only defined by Bitcoin Core's unconditional policy rules.

    Here's a link to functional tests written by @instagibbs and present in the knots codebase that should have been referred to:

    https://github.com/bitcoinknots/bitcoin/blob/29.x-knots/test/functional/mempool_accept.py#L411-L426

    note this line in the knots codebase: https://github.com/bitcoinknots/bitcoin/blob/f41f01e1e6de7025d52a865bef97f2a67277f0f3/test/functional/mempool_accept.py#L425

    Which states, after declaring a p2a anchor with witness is non-standard " # but is consensus-legal" @jonatack @dathonohm

    This is a new rule, the logic sequence here shows it through logic as it is an & on top of the rule 3 text: #2218 (comment)

    To put it into rule 3 is to have a rule with two predicates. Additionally rule 3 would have to be rewritten for its p2a carve out & stuff in a new predicate on empty witness stack for p2a.

  25. murchandamus commented at 10:53 PM on July 28, 2026: member

    Concept ACK. Assuming that the BIP110 authors are interested in enabling other implementers to be consensus compatible with their reference implementation, at least adopting the previously missing test vectors and a clarification on P2A should be an obvious improvement.

    Anyway, I think "spends of P2A outputs that are not empty are undefined" is a completely reasonable reading of BIP-433 since, again, P2A is only defined by Bitcoin Core's unconditional policy rules.

    It seems to me that Dathon Ohm’s explanation on Twitter highlights brilliantly where this interpretation goes awry: <img width="616" height="163" alt="image" src="https://github.com/user-attachments/assets/c0dcff8d-714e-4e35-8a97-14e3e3c1b08d" />

    The consensus change for P2A inputs is highlighted as an important change in the release from February 12th: <img width="1064" height="214" alt="image" src="https://github.com/user-attachments/assets/47ec54bc-f220-44f6-b921-bb8a99821835" />

    BIP 110 only mentions P2A as a defined native segwit output that is acceptable: <img width="1069" height="461" alt="image" src="https://github.com/user-attachments/assets/bfa83a14-cb09-46c0-a996-83fedc21a769" />

    Even if we accept that Rule 3 implies that P2A inputs with a non-empty witness are consensus invalid, it would obviously improve the clarity of the specification to explicitly state how P2A inputs are to be evaluated per the proposal.

    If the authors object to the characterization as an eighth rule, they could e.g. either suggest a concrete alternative phrasing here or submit their own PR that adds the clarification to Rule 3.

  26. jonatack commented at 3:22 PM on July 29, 2026: member

    Please just open a PR with your suggestion and I'll take a look @dathonohm to move this forward the most quickly, could you please accept this PR, and at your convenience open a PR if you wish for 433? Let's help implementers of this BIP as best we can.

  27. dathonohm commented at 3:41 PM on July 29, 2026: contributor

    @jonatack I will not accept this PR as is. I will open a new PR if @jarolrod is not amenable to modifying this one.

  28. dathonohm commented at 3:47 PM on July 29, 2026: contributor

    @instagibbs: if "consensus meaning is unchanged" means "the BIP prescribes no new consensus meaning", then that part of BIP-433 is not applicable to this discussion. If P2A's consensus meaning were relevant, then P2A would not need to be included in BIP-110 at all. The reason BIP-110 mentions P2A is because it is a policy carveout which is elevated to consensus. This policy carveout includes a requirement that P2A spends have an empty witness, so this requirement is accordingly included in BIP-110. The more confusing meaning for "P2A" is "a policy carveout that includes some of the requirements in Bitcoin Core, but not all of them".

  29. jonatack commented at 4:01 PM on July 29, 2026: member

    I will consider accepting this PR as is if BIP-433 is clarified first

    I will not accept this PR as is @dathonohm I object to the manner that you are handling this clarification for implementers of this BIP. I have tried to be fair and neutral, but you're not being helpful.

  30. luke-jr commented at 4:32 PM on July 29, 2026: member

    This PR claims it is a new rule or a material change. That is objectively false.

  31. jonatack commented at 4:47 PM on July 29, 2026: member

    @luke-jr The goal is to make it easier for developers to be compliant with BIP 110. The "new rule" part is of little importance and IMO objecting there doesn't help your cause. Being as helpful as you can to implementers helps your cause.

  32. murchandamus commented at 4:50 PM on July 29, 2026: member

    As I suggested to Dathon on Twitter, just adding “P2A inputs with a non-empty witness stack are invalid.” to the third rule would remove the ambiguity.

  33. RDMoutlaw commented at 4:52 PM on July 29, 2026: none

    Concept ACK

  34. dathonohm commented at 5:01 PM on July 29, 2026: contributor

    Hi @jonatack: I offered many choices to resolve this issue. You are the one being inflexible.

    I have created a new PR, which resolves the ambiguity properly: #2225

    I recommend that you close this PR and continue there instead.

  35. jonatack commented at 5:13 PM on July 29, 2026: member

    @dathonohm You are the one blocking here since the start. Your alternative PR isn't as complete as this one. I object to the game-playing you have been doing here, including accusing the PR author of trolling in #2218 (comment), which I moderated. IMO you and @luke-jr are footgunning in the way you have been handling this.

  36. dathonohm commented at 5:14 PM on July 29, 2026: contributor

    @jonatack No. I will not concede to trolls trying to discredit BIP-110. There is no "additional consensus rule". Rule 3 is sufficient as is.

  37. jonatack commented at 5:17 PM on July 29, 2026: member

    @dathonohm That is where you have been footgunning. The goal isn't to discredit anything. The goal is to make it easier for developers to be compliant with BIP 110.

  38. dathonohm commented at 5:18 PM on July 29, 2026: contributor

    Adding an 8th rule is incorrect and unacceptable. If your honest goal is to clarify what "P2A" means for developers, then you will accept #2225 instead, which is more than sufficient. The only reason you would merge something incorrect like this PR is to cause drama.

  39. luke-jr commented at 5:25 PM on July 29, 2026: member

    The only reason you would merge something incorrect like this PR is to cause drama. @dathonohm To be clear, only the author (you) can update the BIP, so nobody will be merging this without your approval.

  40. murchandamus commented at 6:29 PM on July 29, 2026: member

    luke-jr:

    The only reason you would merge something incorrect like this PR is to cause drama.

    @dathonohm To be clear, only the author (you) can update the BIP, so nobody will be merging this without your approval.

    As BIPs progress through the Status stages in the workflow, they become increasingly co-owned by the Bitcoin ecosystem. At the Complete stage, BIP authors have recommended their proposal for adoption and it is in the ecosystem’s interest for the proposal to be comprehensive and unambiguous. While the authors’ input certainly has weight, I don’t think their interest to sweep issues under the carpet supersedes the ecosystem’s interest in an ambiguous Specification being clarified.

    via BIP3: <img width="850" height="198" alt="image" src="https://github.com/user-attachments/assets/cbd0cf6a-49b8-44a9-95fd-ea7a234670ab" />

    Further, it is my understanding that both Dathon and Luke have argued that it was already intended for BIP110 to forbid P2A inputs with witness data. BIP3 says:

    <img width="866" height="152" alt="image" src="https://github.com/user-attachments/assets/3a7cc6dd-8df9-4878-8607-07cc81d7c4a1" />

    Since both Dathon and Luke agree that P2A inputs with witness data were intended to be invalid, explicitly stating this in the specification does not change the meaning or conflict with the intent of the authors.

    I don’t think it’s necessary to insist on it being phrased as an eighth rule, but it obviously belongs in the specification. I suggest @dathonohm update his PR to add it to Rule 3 as a middleground so we can all move on.

  41. dathonohm commented at 6:36 PM on July 29, 2026: contributor

    Hi Murch - this has been clarified in #2225. Please close this incorrect PR.

  42. murchandamus commented at 6:45 PM on July 29, 2026: member

    Hi Murch - this has been clarified in #2225. Please close this incorrect PR.

    <img width="899" height="183" alt="image" src="https://github.com/user-attachments/assets/e2ff5da8-f0ef-41be-b98c-048dedc0035a" />

    Since I am referring to your latest state of #2225, where you mention the invalidity of P2A inputs with witness data only in the Rationale, clearly it has not been clarified in your alternative PR. I’m happy to close this PR when a satisfactory PR has been presented and merged. If you are not going to open one, I’m happy to propose one myself.

  43. ishi0k commented at 6:51 PM on July 29, 2026: none

    @instagibbs

    I'm trying to better understand the current consensus behavior rather than BIP-110 itself.

    My understanding is that today a P2A spend with a non-empty witness is considered non-standard by Bitcoin Core, so it won't enter the mempool or be relayed.

    However, suppose a miner deliberately modifies their software to ignore that policy and includes such a transaction in an otherwise valid block.

    When that block reaches other Bitcoin Core nodes, would it be accepted or rejected during block validation?

    I would expect this to be determined by the current consensus rules (and likely covered by existing tests), rather than being a matter of interpretation.

    My confusion also comes from how I read BIP-433 itself. It is classified as Peer Services, explicitly describes standard transactions in Bitcoin Core, and also states that "Consensus meaning is unchanged."

    As someone trying to understand the current implementation, that naturally leads me to interpret it as describing a policy behavior rather than introducing a new consensus rule. If that is not the intended interpretation, I would appreciate some clarification on how the combination of its classification and wording should be understood.

    My current understanding is the following, and I'd appreciate being corrected if it's wrong:

    • If Bitcoin Core only rejects this type of transaction at the policy level (preventing it from entering the mempool or being relayed), but would still accept a block containing such a transaction during consensus validation, then I understand this restriction is not currently part of the consensus rules.
    • Under that scenario, my interpretation is that BIP-110 would be introducing consensus validation for a condition that is currently enforced as policy, since a P2A spend with a non-empty witness would cause the entire block to be considered invalid during block validation.
    • If that understanding is correct, then the difference between the two approaches is not merely conceptual, but also affects the actual block validation behavior.

    This is precisely why I'm uncertain about BIP-433. Based on its classification, wording, and the statement "Consensus meaning is unchanged," my expectation as a reader is to interpret it as a policy-only specification.

    If I'm misunderstanding this, I'd really appreciate being pointed to the relevant consensus code or test that defines the current behavior.

  44. dathonohm commented at 6:52 PM on July 29, 2026: contributor

    @murchandamus: #2225 is satisfactory. It hyperlinks to the P2A definition, which is the same thing we did for Rule 2. This PR is incorrect, strictly worse, and should be closed.

  45. jarolrod commented at 7:04 PM on July 29, 2026: none

    @ishi0k

    However, suppose a miner deliberately modifies their software to ignore that policy and includes such a transaction in an otherwise valid block.

    When that block reaches other Bitcoin Core nodes, would it be accepted or rejected during block validation?

    I would expect this to be determined by the current consensus rules (and likely covered by existing tests), rather than being a matter of interpretation.

    see these test lines in knots: https://github.com/bitcoinknots/bitcoin/blob/29.x-knots/test/functional/mempool_accept.py#L411-L426

  46. dathonohm commented at 8:04 PM on July 29, 2026: contributor

    Just to be clear: NACK d347d84132ea7d3efcc778323fccfa94f0a60033

  47. SatsAndSports commented at 9:09 PM on July 29, 2026: none

    More of a question than a comment, following on from @ishi0k 's

    > My understanding is that today a P2A spend with a non-empty witness is considered non-standard by Bitcoin Core, so it won't enter the mempool or be relayed. ..... When that block reaches other Bitcoin Core nodes, would it be accepted or rejected during block validation?

    Am I correct in my attempt to summarize things below?

    Before BIP-110 and before BIP-433, spends of P2A outputs with a non-empty witness were consensus valid. They may, or may not, have been standard on one or more implementations, but we're discussing consensus - not relay policy - here.

    Today, prior to BIP-110 activation, they are still consensus valid on the network. If they were consensus invalid today, that would imply that BIP-433 was an accidental soft fork, a soft fork that converted them from valid to invalid.

    So BIP-433 was not a soft fork. It didn't intend to propose a consensus change, and nor did any developer implement it as a consensus change

    If and when BIP-110 activates, such spends will be consensus invalid according to the implementation of the activation client. This is therefore a consensus change, and it's a consensus introduced by BIP-110's activation.

    It is not the case the BIP-433 was supposed to be a soft fork, and we're using BIP-110 to retrospectively fix our accidental failure to implement the "BIP-433 softfork"

  48. SatsAndSports commented at 9:48 PM on July 29, 2026: none

    Concept ACK

    The BIP-433 sentence:

    P2A inputs are considered standard by Bitcoin Core for spending if no witness data is attached

    implies the existence of the following potential (and correct) sentence:

    P2A inputs are considered non- standard by Bitcoin Core for spending if non-empty witness data is attached

    i.e. such spends (consensus valid, but non-standard according to one implementation) are definitively still P2A (as otherwise, that sentence couldn't start with "P2A")

    In other words, what @instagibbs said earlier:

    I will not change the definition to mean P2A must have no witness, that is not the intention.

    As such spends are therefore P2A, the current BIP-110 BIP does exempt them from change, i.e. they are still consensus valid according to the current BIP. But this unambiguously contradicts the latest implementation of the BIP-110 activation client

  49. ajtowns commented at 1:49 AM on July 30, 2026: contributor

    A "$foo spend" is just shorthand for saying "a spend of a $foo output"; the interpretation of bip 433 by luke and dathom that a spend of a p2a output with a (non-empty) witness is not a p2a spend is simply wrong.

    That said, BIP 3 states "Each BIP is primarily owned by its authors and represents the authors’ opinion or recommendation." so it ultimately doesn't matter if the authors are wrong, their bip should reflect their views, and the appropriate way to present a corrected view that they dispute is by publishing a new bip, as was done with bip 343 (vs bip 341/deployment).

  50. 8144225309 commented at 2:31 AM on July 30, 2026: none

    Concept ACK

  51. delcin-raj commented at 7:10 AM on July 30, 2026: none

    Concept NACK. P2A has no consensus meaning like SegWit or Taproot. Reference to P2A in Rule 3 indicates that the existing standardness rule is considered a consensus rule in BIP-110. #2225 clarifies the intention of @dathonohm No version upgrade is needed, as this is the correct interpretation of the author.

  52. jarolrod commented at 2:50 PM on August 1, 2026: none

    Closing as it's up to @dathonohm to accept, and he has rejected. Happy to open up if bip maintainers see his PR as unacceptable, as it is my stance it is.

    Effort and time should be on helping people migrate their coins.

  53. jarolrod closed this on Aug 1, 2026

  54. jonatack commented at 7:49 PM on August 5, 2026: member

    Happy to open up if bip maintainers see his PR as unacceptable, as it is my stance it is. @jarolrod Perhaps the remaining path, if 110 remains relevant after the fork, would be as suggested by @ajtowns above in #2218 (comment): propose a corrected BIP with your changes in this PR, containing the header Replaces: 110


github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bips. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-08-20 04:10 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me