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 a56f00c commit 7f78fc4Copy full SHA for 7f78fc4
lightning/src/ln/channelmanager.rs
@@ -16677,7 +16677,20 @@ where
16677
monitor.channel_id(),
16678
);
16679
},
16680
- HTLCSource::TrampolineForward { .. } => todo!(),
+ HTLCSource::TrampolineForward { previous_hop_data, .. } => {
16681
+ for current_previous_hop_data in previous_hop_data {
16682
+ channel_monitor_recovery_internal(
16683
+ &mut forward_htlcs,
16684
+ &mut pending_events_read,
16685
+ &mut pending_intercepted_htlcs,
16686
+ &mut decode_update_add_htlcs,
16687
+ current_previous_hop_data,
16688
+ &logger,
16689
+ htlc.payment_hash,
16690
+ monitor.channel_id(),
16691
+ );
16692
+ }
16693
+ },
16694
HTLCSource::OutboundRoute {
16695
payment_id,
16696
session_priv,
0 commit comments