Skip to content

Update channel_reestablish for splicing #3886

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

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
f - TODO(splicing): Support async signing
  • Loading branch information
jkczyz committed Jul 11, 2025
commit cc4152f0b2f58df114b91e2cedebda34e21c7cb8
5 changes: 3 additions & 2 deletions lightning/src/ln/channel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2966,6 +2966,7 @@ where
let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger);
let commitment_signed = match commitment_signed {
Some(commitment_signed) => commitment_signed,
// TODO(splicing): Support async signing
None => {
self.funding.channel_transaction_parameters.funding_outpoint = None;
return Err(ChannelError::Close(
Expand Down Expand Up @@ -5544,7 +5545,7 @@ where
partial_signature_with_nonce: None,
})
} else {
// TODO: Support async signing
// TODO(splicing): Support async signing
None
}
}
Expand Down Expand Up @@ -8425,7 +8426,7 @@ where
// if next_commitment_number is zero:
// MUST retransmit its commitment_signed for that funding transaction.
let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger)
// TODO Support async signing
// TODO(splicing): Support async signing
.ok_or_else(|| ChannelError::Close(
(
"Failed to get signatures for new commitment_signed".to_owned(),
Expand Down