docs / fixups from RBF and packages #24310

pull glozow wants to merge 3 commits into bitcoin:master from glozow:2022-02-fixups changing 3 files +36 −7
  1. glozow commented at 12:09 pm on February 10, 2022: member

    (I’m intending for this to be in v23 since it’s fixups for things that are already merged, which is why I split it from #24152)

  2. glozow added the label Docs on Feb 10, 2022
  3. glozow commented at 12:16 pm on February 10, 2022: member
    cc @LarryRuane @mzumsande since you both mentioned that deduplication wasn’t described in packages.md
  4. ariard commented at 0:37 am on February 11, 2022: member

    ACK 84c8123

    competing package or transaction with a mutated witness, the honest package should be accepted

    nit: I think it could say “package or transaction with a mutated witness, the better-feerate competing package, potentially with overlapping components, should be accepted”. Just to get ride of the honesty concept in matters of mempool acceptance. I believe it’s accurate to talk about dishonesty only in the context of specific second-layer attacks. Because for some (e.g LN), the “dishonest”/attacker package confirming might be a good outcome for funds safety, namely pushing forward the channel state.

    (can’t comment on the commit directly, GH buggy as usual)

  5. DrahtBot commented at 11:09 am on February 11, 2022: member

    The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.

    Conflicts

    Reviewers, this pull request conflicts with the following ones:

    • #24152 (policy / validation: CPFP fee bumping within packages by glozow)

    If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.

  6. fanquake commented at 10:09 am on February 12, 2022: member
  7. darosior commented at 11:47 am on February 12, 2022: member

    ACK 84c8123f6b2578e7b343c98b327574f0910b2078

    Maybe worth a regression test? For instance a simple

     0diff --git a/src/test/txpackage_tests.cpp b/src/test/txpackage_tests.cpp
     1index 560efb6b42..15bbae3455 100644
     2--- a/src/test/txpackage_tests.cpp
     3+++ b/src/test/txpackage_tests.cpp
     4@@ -413,6 +413,9 @@ BOOST_FIXTURE_TEST_CASE(package_witness_swap_tests, TestChain100Setup)
     5 
     6         BOOST_CHECK(m_node.mempool->exists(GenTxid::Txid(ptx_child2->GetHash())));
     7         BOOST_CHECK(!m_node.mempool->exists(GenTxid::Wtxid(ptx_child2->GetWitnessHash())));
     8+
     9+        ProcessNewPackage(m_node.chainman->ActiveChainstate(), *m_node.mempool, {ptx_parent, ptx_child1},
    10+                          /*test_accept=*/ false);
    11     }
    12 
    13     // Try submitting Package1{child2, grandchild} where child2 is same-txid-different-witness as
    

    would fail on the assertion without the patch.

  8. [validation] look up transaction by txid
    GetIter takes a txid, not wtxid.
    5ae187f876
  9. [doc] clarify inaccurate comment about replacements paying higher feerate
    Co-authored-by: Suhas Daftuar <sdaftuar@gmail.com>
    d35a3cb396
  10. [doc] package deduplication 77202f0554
  11. in src/validation.cpp:914 in a347f7ed16 outdated
    915-    // more economically rational to mine. Before we go digging through the mempool for all
    916-    // transactions that would need to be removed (direct conflicts and all descendants), check
    917-    // that the replacement transaction pays more than its direct conflicts.
    918+    // The replacement transaction must have a higher feerate than its direct conflicts. Before
    919+    // ancestor packages were used in mining, this was equivalent to checking that our mining code
    920+    // would prefer the replacement. Now, it serves as a fail-fast mechanism.
    


    sdaftuar commented at 8:12 pm on February 12, 2022:

    Now, it serves as a fail-fast mechanism.

    This sentence strikes me as odd; I think it gives the idea that perhaps this check is redundant (but faster to calculate) with the check that involves all descendants, which isn’t the case.

    If it were me, I’d add a comment like this to the code:

    0The replacement transaction must have a higher feerate than its direct conflicts.
    1- The motivation for this check is to ensure that the replacement transaction is preferable 
    2  for block-inclusion, compared to what would be removed from the mempool.
    3- This logic predates ancestor feerate-based transaction selection, which is why it doesn't 
    4  consider feerates of descendants.
    5- Note: Ancestor feerate-based transaction selection has made this comparison insufficient 
    6  to guarantee that this is incentive-compatible for miners, because it is possible for a 
    7  descendant transaction of a direct conflict to pay a higher feerate than the transaction 
    8  that might replace them, under these rules.
    

    glozow commented at 10:06 am on February 14, 2022:
    Thanks for writing an alternative! I’ve changed the comment to be this.
  12. glozow force-pushed on Feb 14, 2022
  13. glozow commented at 10:09 am on February 14, 2022: member

    Thanks for the reviews! I’ve added the test suggested by @darosior and comment suggested by @sdaftuar.

    nit: I think it could say “package or transaction with a mutated witness, the better-feerate competing package, potentially with overlapping components, should be accepted”. Just to get ride of the honesty concept in matters of mempool acceptance. I believe it’s accurate to talk about dishonesty only in the context of specific second-layer attacks. Because for some (e.g LN), the “dishonest”/attacker package confirming might be a good outcome for funds safety, namely pushing forward the channel state.

    I’ve clarified the doc to indicate that we just don’t want the same-txid-different-witness transaction to be rejected completely, because we normally would consider it a conflict that we won’t replace. I only want to document what the current code does, and it doesn’t care about the fees of witnesses right now. We can change it later if the code changes.

  14. t-bast approved
  15. darosior commented at 3:39 pm on February 16, 2022: member
    ACK 77202f0554dcbbbb167d0ed3927cca0bf4609ce8
  16. in src/test/txpackage_tests.cpp:417 in 77202f0554
    412@@ -413,6 +413,17 @@ BOOST_FIXTURE_TEST_CASE(package_witness_swap_tests, TestChain100Setup)
    413 
    414         BOOST_CHECK(m_node.mempool->exists(GenTxid::Txid(ptx_child2->GetHash())));
    415         BOOST_CHECK(!m_node.mempool->exists(GenTxid::Wtxid(ptx_child2->GetWitnessHash())));
    416+
    417+        // Deduplication should work when wtxid != txid. Submit package with the already-in-mempool
    


    LarryRuane commented at 4:36 am on February 20, 2022:

    when wtxid != txid

    (nonblocking:) This confused me; can this be stated more clearly? wtxid can never equal txid.

    0        // Deduplication should work when existing wtxid != package wtxid. Submit package with the already-in-mempool
    

    darosior commented at 10:01 am on February 20, 2022:
    The wtxid of a transaction is equal to its txid when there is no witness data. This is precisely what this commit fixes and why this test didn’t catch the bug earlier: ptx_parent is submitted multiple times, but its txid is equal to its wtxid. Otherwise it would have failed the assertion.
  17. LarryRuane commented at 4:49 am on February 20, 2022: contributor
    ACK 77202f0554dcbbbb167d0ed3927cca0bf4609ce8
  18. fanquake merged this on Feb 22, 2022
  19. fanquake closed this on Feb 22, 2022

  20. glozow deleted the branch on Feb 22, 2022
  21. sidhujag referenced this in commit b2aae5647b on Feb 22, 2022
  22. DrahtBot locked this on Feb 22, 2023

github-metadata-mirror

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-07-01 10:13 UTC

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