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 @@ -667,9 +667,10 @@ where
667
667
LdkEvent :: PaymentForwarded {
668
668
prev_channel_id,
669
669
next_channel_id,
670
- fee_earned_msat ,
670
+ total_fee_earned_msat ,
671
671
claim_from_onchain_tx,
672
672
outbound_amount_forwarded_msat,
673
+ ..
673
674
} => {
674
675
let read_only_network_graph = self . network_graph . read_only ( ) ;
675
676
let nodes = read_only_network_graph. nodes ( ) ;
@@ -702,7 +703,7 @@ where
702
703
let to_next_str =
703
704
format ! ( " to {}{}" , node_str( & next_channel_id) , channel_str( & next_channel_id) ) ;
704
705
705
- let fee_earned = fee_earned_msat . unwrap_or ( 0 ) ;
706
+ let fee_earned = total_fee_earned_msat . unwrap_or ( 0 ) ;
706
707
let outbound_amount_forwarded_msat = outbound_amount_forwarded_msat. unwrap_or ( 0 ) ;
707
708
if claim_from_onchain_tx {
708
709
log_info ! (
You can’t perform that action at this time.
0 commit comments