File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -2966,6 +2966,7 @@ where
29662966 let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger);
29672967 let commitment_signed = match commitment_signed {
29682968 Some(commitment_signed) => commitment_signed,
2969+ // TODO(splicing): Support async signing
29692970 None => {
29702971 self.funding.channel_transaction_parameters.funding_outpoint = None;
29712972 return Err(ChannelError::Close(
@@ -5544,7 +5545,7 @@ where
55445545 partial_signature_with_nonce: None,
55455546 })
55465547 } else {
5547- // TODO: Support async signing
5548+ // TODO(splicing) : Support async signing
55485549 None
55495550 }
55505551 }
@@ -8425,7 +8426,7 @@ where
84258426 // if next_commitment_number is zero:
84268427 // MUST retransmit its commitment_signed for that funding transaction.
84278428 let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger)
8428- // TODO Support async signing
8429+ // TODO(splicing): Support async signing
84298430 .ok_or_else(|| ChannelError::Close(
84308431 (
84318432 "Failed to get signatures for new commitment_signed".to_owned(),
You can’t perform that action at this time.
0 commit comments