File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -630,9 +630,10 @@ where
630
630
LdkEvent :: PaymentForwarded {
631
631
prev_channel_id,
632
632
next_channel_id,
633
- fee_earned_msat ,
633
+ total_fee_earned_msat ,
634
634
claim_from_onchain_tx,
635
635
outbound_amount_forwarded_msat,
636
+ ..
636
637
} => {
637
638
let read_only_network_graph = self . network_graph . read_only ( ) ;
638
639
let nodes = read_only_network_graph. nodes ( ) ;
@@ -665,7 +666,7 @@ where
665
666
let to_next_str =
666
667
format ! ( " to {}{}" , node_str( & next_channel_id) , channel_str( & next_channel_id) ) ;
667
668
668
- let fee_earned = fee_earned_msat . unwrap_or ( 0 ) ;
669
+ let fee_earned = total_fee_earned_msat . unwrap_or ( 0 ) ;
669
670
let outbound_amount_forwarded_msat = outbound_amount_forwarded_msat. unwrap_or ( 0 ) ;
670
671
if claim_from_onchain_tx {
671
672
log_info ! (
You can’t perform that action at this time.
0 commit comments