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
2966
2966
let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger);
2967
2967
let commitment_signed = match commitment_signed {
2968
2968
Some(commitment_signed) => commitment_signed,
2969
+ // TODO(splicing): Support async signing
2969
2970
None => {
2970
2971
self.funding.channel_transaction_parameters.funding_outpoint = None;
2971
2972
return Err(ChannelError::Close(
@@ -5544,7 +5545,7 @@ where
5544
5545
partial_signature_with_nonce: None,
5545
5546
})
5546
5547
} else {
5547
- // TODO: Support async signing
5548
+ // TODO(splicing) : Support async signing
5548
5549
None
5549
5550
}
5550
5551
}
@@ -8425,7 +8426,7 @@ where
8425
8426
// if next_commitment_number is zero:
8426
8427
// MUST retransmit its commitment_signed for that funding transaction.
8427
8428
let commitment_signed = self.context.get_initial_commitment_signed(&self.funding, logger)
8428
- // TODO Support async signing
8429
+ // TODO(splicing): Support async signing
8429
8430
.ok_or_else(|| ChannelError::Close(
8430
8431
(
8431
8432
"Failed to get signatures for new commitment_signed".to_owned(),
You can’t perform that action at this time.
0 commit comments