Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove exclusive reference and generic from CommitmentTransaction API #3689

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

tankyleo
Copy link
Contributor

@tankyleo tankyleo commented Mar 29, 2025

    Remove exclusive reference and generic from `CommitmentTransaction` API
    
    This commit reworks how channel is told about which HTLCs were assigned
    which index upon the build of a `CommitmentTransaction`.
    
    Previously, `CommitmentTransaction` was given an exclusive reference to
    channel's HTLC-source table, and `CommitmentTransaction` populated the
    transaction output indices in that table via this exclusive reference.
    
    As a result, the public API of `CommitmentTransaction` included a
    generic parameter, and an exclusive reference.
    
    We remove both of these in preparation for the upcoming `TxBuilder`
    trait. This cleans up the API, and makes it more bindings-friendly.
    
    Henceforth, channel populates the HTLC-source table via a brute-force
    search of each htlc in `CommitmentTransaction`. This is an O(n^2)
    operation, but n is small enough that we ignore the performance hit.

Single commit PR, based on top of #3682

@ldk-reviews-bot
Copy link

👋 Hi! I see this is a draft PR.
I'll wait to assign reviewers until you mark it as ready for review.
Just convert it out of draft status when you're ready for review!

@tankyleo tankyleo changed the title Remove generic and mutable references from commitment transaction API Remove generic and mutable references from CommitmentTransaction API Mar 29, 2025
@tankyleo tankyleo changed the title Remove generic and mutable references from CommitmentTransaction API Remove generic and exclusive references from CommitmentTransaction API Mar 29, 2025
@tankyleo tankyleo changed the title Remove generic and exclusive references from CommitmentTransaction API Remove generic and exclusive reference from CommitmentTransaction API Mar 29, 2025
@tankyleo tankyleo force-pushed the small-n-squared branch 2 times, most recently from c8a753e to b04cc76 Compare March 29, 2025 01:07
@tankyleo tankyleo changed the title Remove generic and exclusive reference from CommitmentTransaction API Remove exclusive reference and generic from CommitmentTransaction API Mar 29, 2025
tankyleo added 4 commits April 1, 2025 17:06
It can be useful to get the stats on a potential commitment transaction
without actually building it. Therefore, this commit splits the stats
calculations from the actual build of a commitment transaction.

This introduces an extra loop over the pending htlcs, but current
network behavior produces very few concurrent htlcs on channels.
Furthermore, each iteration of the loop in the stats calculation is very
cheap.
This commit reworks how channel is told about which HTLCs were assigned
which index upon the build of a `CommitmentTransaction`.

Previously, `CommitmentTransaction` was given an exclusive reference to
channel's HTLC-source table, and `CommitmentTransaction` populated the
transaction output indices in that table via this exclusive reference.

As a result, the public API of `CommitmentTransaction` included a
generic parameter, and an exclusive reference.

We remove both of these in preparation for the upcoming `TxBuilder`
trait. This cleans up the API, and makes it more bindings-friendly.

Henceforth, channel populates the HTLC-source table via a brute-force
search of each htlc in `CommitmentTransaction`. This is an O(n^2)
operation, but n is small enough that we ignore the performance hit.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants