@@ -13252,8 +13252,7 @@ where
13252
13252
let is_manual_broadcast = Some(self.context.is_manual_broadcast);
13253
13253
13254
13254
let holder_commitment_point_current = self.holder_commitment_point.current_point();
13255
- // `HolderCommitmentPoint::next_point` will become optional when async signing is implemented.
13256
- let holder_commitment_point_next = Some(self.holder_commitment_point.next_point());
13255
+ let holder_commitment_point_next = self.holder_commitment_point.next_point();
13257
13256
let holder_commitment_point_pending_next = self.holder_commitment_point.pending_next_point;
13258
13257
13259
13258
write_tlv_fields!(writer, {
@@ -13292,7 +13291,7 @@ where
13292
13291
(39, pending_outbound_blinding_points, optional_vec),
13293
13292
(41, holding_cell_blinding_points, optional_vec),
13294
13293
(43, malformed_htlcs, optional_vec), // Added in 0.0.119
13295
- (45, holder_commitment_point_next, option ),
13294
+ (45, holder_commitment_point_next, required ),
13296
13295
(47, holder_commitment_point_pending_next, option),
13297
13296
(49, self.context.local_initiated_shutdown, option), // Added in 0.0.122
13298
13297
(51, is_manual_broadcast, option), // Added in 0.0.124
0 commit comments