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

Fee Info in PaymentDetails #494

Closed
TheBlueMatt opened this issue Mar 18, 2025 · 3 comments
Closed

Fee Info in PaymentDetails #494

TheBlueMatt opened this issue Mar 18, 2025 · 3 comments
Assignees

Comments

@TheBlueMatt
Copy link

It'd be nice to be able to fetch the fee-paid from PaymentDetails (both for outbound payments and inbound payments where the LSP took a fee off the top).

@G8XSU G8XSU self-assigned this Mar 18, 2025
@G8XSU
Copy link
Contributor

G8XSU commented Mar 18, 2025

Needed in ldk-server as well, will assign to myself.

@tnull
Copy link
Collaborator

tnull commented Mar 19, 2025

This is already available on master since #468:

/// The fees that were paid for this payment.
///
/// For Lightning payments, this will only be updated for outbound payments once they
/// succeeded.
///
/// Will be `None` for Lightning payments made with LDK Node v0.4.x and earlier.
pub fee_paid_msat: Option<u64>,

Closing as completed.

For inbound JIT payments you'll see the negotiated fee limits here:

/// Limits applying to how much fee we allow an LSP to deduct from the payment amount.
///
/// Allowing them to deduct this fee from the first inbound payment will pay for the LSP's
/// channel opening fees.
///
/// See [`LdkChannelConfig::accept_underpaying_htlcs`] for more information.
///
/// [`LdkChannelConfig::accept_underpaying_htlcs`]: lightning::util::config::ChannelConfig::accept_underpaying_htlcs
lsp_fee_limits: LSPFeeLimits,

This should be mostly equal to counterpart_skimmed_fee, but technically we only assert that the former is less or equal than these limits before claiming the payment.

@tnull tnull closed this as completed Mar 19, 2025
@tnull
Copy link
Collaborator

tnull commented Mar 19, 2025

Now opened #497 to add counterpart_skimmed_fee to the Bolt11JIT variant.

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

No branches or pull requests

3 participants