@@ -13242,10 +13242,9 @@ where
13242
13242
}
13243
13243
let is_manual_broadcast = Some(self.context.is_manual_broadcast);
13244
13244
13245
- // `HolderCommitmentPoint::point` will become optional when async signing is implemented.
13246
13245
let current_holder_commitment_point =
13247
13246
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();
13249
13248
let next_holder_commitment_point_next_advance =
13250
13249
self.next_holder_commitment_point.next_point();
13251
13250
@@ -13285,7 +13284,7 @@ where
13285
13284
(39, pending_outbound_blinding_points, optional_vec),
13286
13285
(41, holding_cell_blinding_points, optional_vec),
13287
13286
(43, malformed_htlcs, optional_vec), // Added in 0.0.119
13288
- (45, next_holder_commitment_point, option ),
13287
+ (45, next_holder_commitment_point, required ),
13289
13288
(47, next_holder_commitment_point_next_advance, option),
13290
13289
(49, self.context.local_initiated_shutdown, option), // Added in 0.0.122
13291
13290
(51, is_manual_broadcast, option), // Added in 0.0.124
0 commit comments