File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -707,11 +707,13 @@ pub struct ChannelInfo {
707
707
/// (which we can probably assume we are - no-std environments probably won't have a full
708
708
/// network graph in memory!).
709
709
announcement_received_time : u64 ,
710
- // Lowest fees to enter the first direction, based on the cheapest channel to the source node.
711
- // Both fees correspond to the same channel.
710
+ /// Lowest fees to enter the first direction, based on the cheapest channel to the source node.
711
+ /// The two fields (flat and proportional fee) are independent,
712
+ /// meaning they don't have to refer to the same channel.
712
713
pub lowest_inbound_channel_fees_to_one : Option < RoutingFees > ,
713
- // Lowest fees to enter the second direction, based on the cheapest channel to the source node.
714
- // Both fees correspond to the same channel.
714
+ /// Lowest fees to enter the second direction, based on the cheapest channel to the source node.
715
+ /// The two fields (flat and proportional fee) are independent,
716
+ /// meaning they don't have to refer to the same channel.
715
717
pub lowest_inbound_channel_fees_to_two : Option < RoutingFees > ,
716
718
}
717
719
You can’t perform that action at this time.
0 commit comments