File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -2219,7 +2219,8 @@ impl ChannelMonitor {
2219
2219
assert ! ( local_tx. tx. has_local_sig( ) ) ;
2220
2220
match self . key_storage {
2221
2221
Storage :: Local { ref delayed_payment_base_key, .. } => {
2222
- append_onchain_update ! ( self . broadcast_by_local_state( local_tx, delayed_payment_base_key, height) ) ;
2222
+ let mut res = self . broadcast_by_local_state ( local_tx, delayed_payment_base_key, height) ;
2223
+ append_onchain_update ! ( res) ;
2223
2224
} ,
2224
2225
Storage :: Watchtower { .. } => { }
2225
2226
}
@@ -2242,7 +2243,8 @@ impl ChannelMonitor {
2242
2243
assert ! ( local_tx. tx. has_local_sig( ) ) ;
2243
2244
match self . key_storage {
2244
2245
Storage :: Local { ref delayed_payment_base_key, .. } => {
2245
- append_onchain_update ! ( self . broadcast_by_local_state( local_tx, delayed_payment_base_key, height) ) ;
2246
+ let mut res = self . broadcast_by_local_state ( local_tx, delayed_payment_base_key, height) ;
2247
+ append_onchain_update ! ( res) ;
2246
2248
} ,
2247
2249
Storage :: Watchtower { .. } => { }
2248
2250
}
You can’t perform that action at this time.
0 commit comments