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 @@ -714,9 +714,10 @@ where
714
714
LdkEvent :: PaymentForwarded {
715
715
prev_channel_id,
716
716
next_channel_id,
717
- fee_earned_msat ,
717
+ total_fee_earned_msat ,
718
718
claim_from_onchain_tx,
719
719
outbound_amount_forwarded_msat,
720
+ ..
720
721
} => {
721
722
let read_only_network_graph = self . network_graph . read_only ( ) ;
722
723
let nodes = read_only_network_graph. nodes ( ) ;
@@ -749,7 +750,7 @@ where
749
750
let to_next_str =
750
751
format ! ( " to {}{}" , node_str( & next_channel_id) , channel_str( & next_channel_id) ) ;
751
752
752
- let fee_earned = fee_earned_msat . unwrap_or ( 0 ) ;
753
+ let fee_earned = total_fee_earned_msat . unwrap_or ( 0 ) ;
753
754
let outbound_amount_forwarded_msat = outbound_amount_forwarded_msat. unwrap_or ( 0 ) ;
754
755
if claim_from_onchain_tx {
755
756
log_info ! (
You can’t perform that action at this time.
0 commit comments