Skip to content

Commit 96a7870

Browse files
committed
Drop outdated async signing comment
1 parent d3b5dc5 commit 96a7870

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lightning/src/ln/channel.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13242,10 +13242,9 @@ where
1324213242
}
1324313243
let is_manual_broadcast = Some(self.context.is_manual_broadcast);
1324413244

13245-
// `HolderCommitmentPoint::point` will become optional when async signing is implemented.
1324613245
let current_holder_commitment_point =
1324713246
self.current_holder_commitment_point.map(|p| p.point());
13248-
let next_holder_commitment_point = Some(self.next_holder_commitment_point.point());
13247+
let next_holder_commitment_point = self.next_holder_commitment_point.point();
1324913248
let next_holder_commitment_point_next_advance =
1325013249
self.next_holder_commitment_point.next_point();
1325113250

@@ -13285,7 +13284,7 @@ where
1328513284
(39, pending_outbound_blinding_points, optional_vec),
1328613285
(41, holding_cell_blinding_points, optional_vec),
1328713286
(43, malformed_htlcs, optional_vec), // Added in 0.0.119
13288-
(45, next_holder_commitment_point, option),
13287+
(45, next_holder_commitment_point, required),
1328913288
(47, next_holder_commitment_point_next_advance, option),
1329013289
(49, self.context.local_initiated_shutdown, option), // Added in 0.0.122
1329113290
(51, is_manual_broadcast, option), // Added in 0.0.124

0 commit comments

Comments
 (0)