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 @@ -2220,7 +2220,8 @@ impl ChannelMonitor {
2220
2220
assert ! ( local_tx. tx. has_local_sig( ) ) ;
2221
2221
match self . key_storage {
2222
2222
Storage :: Local { ref delayed_payment_base_key, .. } => {
2223
- append_onchain_update ! ( self . broadcast_by_local_state( local_tx, delayed_payment_base_key, height) ) ;
2223
+ let mut res = self . broadcast_by_local_state ( local_tx, delayed_payment_base_key, height) ;
2224
+ append_onchain_update ! ( res) ;
2224
2225
} ,
2225
2226
Storage :: Watchtower { .. } => { }
2226
2227
}
@@ -2243,7 +2244,8 @@ impl ChannelMonitor {
2243
2244
assert ! ( local_tx. tx. has_local_sig( ) ) ;
2244
2245
match self . key_storage {
2245
2246
Storage :: Local { ref delayed_payment_base_key, .. } => {
2246
- append_onchain_update ! ( self . broadcast_by_local_state( local_tx, delayed_payment_base_key, height) ) ;
2247
+ let mut res = self . broadcast_by_local_state ( local_tx, delayed_payment_base_key, height) ;
2248
+ append_onchain_update ! ( res) ;
2247
2249
} ,
2248
2250
Storage :: Watchtower { .. } => { }
2249
2251
}
You can’t perform that action at this time.
0 commit comments