@@ -13252,8 +13252,7 @@ where
1325213252 let is_manual_broadcast = Some(self.context.is_manual_broadcast);
1325313253
1325413254 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();
1325713256 let holder_commitment_point_pending_next = self.holder_commitment_point.pending_next_point;
1325813257
1325913258 write_tlv_fields!(writer, {
@@ -13292,7 +13291,7 @@ where
1329213291 (39, pending_outbound_blinding_points, optional_vec),
1329313292 (41, holding_cell_blinding_points, optional_vec),
1329413293 (43, malformed_htlcs, optional_vec), // Added in 0.0.119
13295- (45, holder_commitment_point_next, option ),
13294+ (45, holder_commitment_point_next, required ),
1329613295 (47, holder_commitment_point_pending_next, option),
1329713296 (49, self.context.local_initiated_shutdown, option), // Added in 0.0.122
1329813297 (51, is_manual_broadcast, option), // Added in 0.0.124
0 commit comments