@@ -1021,6 +1021,7 @@ impl<Signer: Sign> Writeable for ChannelMonitorImpl<Signer> {
1021
1021
( 7 , self . funding_spend_seen, required) ,
1022
1022
( 9 , self . counterparty_node_id, option) ,
1023
1023
( 11 , self . confirmed_commitment_tx_counterparty_output, option) ,
1024
+ ( 13 , self . allow_automated_broadcast, required) ,
1024
1025
} ) ;
1025
1026
1026
1027
Ok ( ( ) )
@@ -3658,13 +3659,15 @@ impl<'a, Signer: Sign, K: KeysInterface<Signer = Signer>> ReadableArgs<&'a K>
3658
3659
let mut funding_spend_seen = Some ( false ) ;
3659
3660
let mut counterparty_node_id = None ;
3660
3661
let mut confirmed_commitment_tx_counterparty_output = None ;
3662
+ let mut allow_automated_broadcast = None ;
3661
3663
read_tlv_fields ! ( reader, {
3662
3664
( 1 , funding_spend_confirmed, option) ,
3663
3665
( 3 , htlcs_resolved_on_chain, vec_type) ,
3664
3666
( 5 , pending_monitor_events, vec_type) ,
3665
3667
( 7 , funding_spend_seen, option) ,
3666
3668
( 9 , counterparty_node_id, option) ,
3667
3669
( 11 , confirmed_commitment_tx_counterparty_output, option) ,
3670
+ ( 13 , allow_automated_broadcast, option) ,
3668
3671
} ) ;
3669
3672
3670
3673
let mut secp_ctx = Secp256k1 :: new ( ) ;
0 commit comments