File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -1225,6 +1225,7 @@ impl Channel {
1225
1225
_ => { }
1226
1226
}
1227
1227
}
1228
+ log_trace ! ( self , "Adding HTLC claim to holding_cell! Current state: {}" , self . channel_state) ;
1228
1229
self . holding_cell_htlc_updates . push ( HTLCUpdateAwaitingACK :: ClaimHTLC {
1229
1230
payment_preimage : payment_preimage_arg, htlc_id : htlc_id_arg,
1230
1231
} ) ;
@@ -1238,6 +1239,7 @@ impl Channel {
1238
1239
debug_assert ! ( false , "Have an inbound HTLC we tried to claim before it was fully committed to" ) ;
1239
1240
return Ok ( ( None , Some ( self . channel_monitor . clone ( ) ) ) ) ;
1240
1241
}
1242
+ log_trace ! ( self , "Upgrading HTLC {} to LocalRemoved with a Fulfill!" , log_bytes!( htlc. payment_hash. 0 ) ) ;
1241
1243
htlc. state = InboundHTLCState :: LocalRemoved ( InboundHTLCRemovalReason :: Fulfill ( payment_preimage_arg. clone ( ) ) ) ;
1242
1244
}
1243
1245
You can’t perform that action at this time.
0 commit comments