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

lightningd: fix anchorspend HTLC deadline logic. #8190

Conversation

rustyrussell
Copy link
Contributor

It's not the outgoing HTLC which sets the deadline, it's the incoming.

Reported-by: @whitslack

Changelog-Fixed: Protocol: Egregious anchor fee paid for unilateral close txs due to HTLC timeouts; it's not as urgent as our code made out!
Fixes: #8174

(There are other issues with our exact feerate calculation, but those will come in a separate PR for the next release)

It's not the *outgoing* HTLC which sets the deadline, it's the incoming.

Reported-by: @whitslack
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Fixed: Protocol: Egregious anchor fee paid for unilateral close txs due to HTLC timeouts; it's not as urgent as our code made out!
@rustyrussell rustyrussell added this to the v25.02.1 milestone Mar 31, 2025
@@ -204,7 +204,12 @@ struct anchor_details *create_anchor_details(const tal_t *ctx,
continue;

v.msat = hout->msat;
v.block = hout->cltv_expiry;
/* Our real deadline here is the INCOMING htlc. If it's us, use the default so we don't leak
* too much information about it. */
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't quite follow the comment. This is to set the fees as though we could be a forwarding node even if we initiated the payment?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's actually no real deadline if we're the source, since there's no incoming HTLC. But we use the default (12 blocks) which is actually what we use for most forwards anyway: if we didn't set some deadline it would become pretty clear we didn't care.

Copy link
Collaborator

@endothermicdev endothermicdev left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK 2df40fa

@endothermicdev endothermicdev merged commit 19f76e1 into ElementsProject:master Apr 1, 2025
40 checks passed
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.

25.02: Egregious feerate spent to claim anchor output of already high-feerate commitment
2 participants