We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0677b0 commit 9f47d5cCopy full SHA for 9f47d5c
lightning/src/ln/channelmanager.rs
@@ -16565,7 +16565,20 @@ where
16565
monitor.channel_id(),
16566
);
16567
},
16568
- HTLCSource::TrampolineForward { .. } => todo!(),
+ HTLCSource::TrampolineForward { previous_hop_data, .. } => {
16569
+ for current_previous_hop_data in previous_hop_data {
16570
+ channel_monitor_recovery_internal(
16571
+ &mut forward_htlcs,
16572
+ &mut pending_events_read,
16573
+ &mut pending_intercepted_htlcs,
16574
+ &mut decode_update_add_htlcs,
16575
+ current_previous_hop_data,
16576
+ &logger,
16577
+ htlc.payment_hash,
16578
+ monitor.channel_id(),
16579
+ );
16580
+ }
16581
+ },
16582
HTLCSource::OutboundRoute {
16583
payment_id,
16584
session_priv,
0 commit comments