@@ -6781,6 +6781,7 @@ impl<Signer: WriteableEcdsaChannelSigner> Writeable for Channel<Signer> {
6781
6781
( 5 , self . context. config, required) ,
6782
6782
( 6 , serialized_holder_htlc_max_in_flight, option) ,
6783
6783
( 7 , self . context. shutdown_scriptpubkey, option) ,
6784
+ ( 8 , self . context. blocked_monitor_updates, vec_type) ,
6784
6785
( 9 , self . context. target_closing_feerate_sats_per_kw, option) ,
6785
6786
( 11 , self . context. monitor_pending_finalized_fulfills, vec_type) ,
6786
6787
( 13 , self . context. channel_creation_height, required) ,
@@ -6794,7 +6795,6 @@ impl<Signer: WriteableEcdsaChannelSigner> Writeable for Channel<Signer> {
6794
6795
( 28 , holder_max_accepted_htlcs, option) ,
6795
6796
( 29 , self . context. temporary_channel_id, option) ,
6796
6797
( 31 , channel_pending_event_emitted, option) ,
6797
- ( 33 , self . context. blocked_monitor_updates, vec_type) ,
6798
6798
( 35 , pending_outbound_skimmed_fees, optional_vec) ,
6799
6799
( 37 , holding_cell_skimmed_fees, optional_vec) ,
6800
6800
} ) ;
@@ -7089,6 +7089,7 @@ impl<'a, 'b, 'c, ES: Deref, SP: Deref> ReadableArgs<(&'a ES, &'b SP, u32, &'c Ch
7089
7089
( 5 , config, option) , // Note that if none is provided we will *not* overwrite the existing one.
7090
7090
( 6 , holder_max_htlc_value_in_flight_msat, option) ,
7091
7091
( 7 , shutdown_scriptpubkey, option) ,
7092
+ ( 8 , blocked_monitor_updates, vec_type) ,
7092
7093
( 9 , target_closing_feerate_sats_per_kw, option) ,
7093
7094
( 11 , monitor_pending_finalized_fulfills, vec_type) ,
7094
7095
( 13 , channel_creation_height, option) ,
@@ -7102,7 +7103,6 @@ impl<'a, 'b, 'c, ES: Deref, SP: Deref> ReadableArgs<(&'a ES, &'b SP, u32, &'c Ch
7102
7103
( 28 , holder_max_accepted_htlcs, option) ,
7103
7104
( 29 , temporary_channel_id, option) ,
7104
7105
( 31 , channel_pending_event_emitted, option) ,
7105
- ( 33 , blocked_monitor_updates, vec_type) ,
7106
7106
( 35 , pending_outbound_skimmed_fees_opt, optional_vec) ,
7107
7107
( 37 , holding_cell_skimmed_fees_opt, optional_vec) ,
7108
7108
} ) ;
0 commit comments