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 @@ -705,9 +705,10 @@ where
705
705
LdkEvent :: PaymentForwarded {
706
706
prev_channel_id,
707
707
next_channel_id,
708
- fee_earned_msat ,
708
+ total_fee_earned_msat ,
709
709
claim_from_onchain_tx,
710
710
outbound_amount_forwarded_msat,
711
+ ..
711
712
} => {
712
713
let read_only_network_graph = self . network_graph . read_only ( ) ;
713
714
let nodes = read_only_network_graph. nodes ( ) ;
@@ -740,7 +741,7 @@ where
740
741
let to_next_str =
741
742
format ! ( " to {}{}" , node_str( & next_channel_id) , channel_str( & next_channel_id) ) ;
742
743
743
- let fee_earned = fee_earned_msat . unwrap_or ( 0 ) ;
744
+ let fee_earned = total_fee_earned_msat . unwrap_or ( 0 ) ;
744
745
let outbound_amount_forwarded_msat = outbound_amount_forwarded_msat. unwrap_or ( 0 ) ;
745
746
if claim_from_onchain_tx {
746
747
log_info ! (
You can’t perform that action at this time.
0 commit comments