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 @@ -5526,6 +5526,7 @@ where
55265526 let commitment_signed = self.get_initial_commitment_signed(&funding, logger);
55275527 let commitment_signed = match commitment_signed {
55285528 Some(commitment_signed) => commitment_signed,
5529+ // TODO(splicing): Support async signing
55295530 None => {
55305531 funding.channel_transaction_parameters.funding_outpoint = None;
55315532 return Err(msgs::TxAbort {
@@ -5636,7 +5637,7 @@ where
56365637 partial_signature_with_nonce: None,
56375638 })
56385639 } else {
5639- // TODO: Support async signing
5640+ // TODO(splicing) : Support async signing
56405641 None
56415642 }
56425643 }
@@ -8799,7 +8800,7 @@ where
87998800 // if next_commitment_number is zero:
88008801 // MUST retransmit its commitment_signed for that funding transaction.
88018802 let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger)
8802- // TODO Support async signing
8803+ // TODO(splicing): Support async signing
88038804 .ok_or_else(|| {
88048805 let message = "Failed to get signatures for new commitment_signed".to_owned();
88058806 ChannelError::Close(
You can’t perform that action at this time.
0 commit comments