From a320a4daf54c5b8f8b14121477b78b194defffbd Mon Sep 17 00:00:00 2001 From: Jeffrey Czyz Date: Sun, 5 Feb 2023 21:32:38 -0600 Subject: [PATCH] Fix RoutingFees::base_msat docs --- lightning/src/routing/gossip.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/src/routing/gossip.rs b/lightning/src/routing/gossip.rs index 363f067b1..d3e476fd5 100644 --- a/lightning/src/routing/gossip.rs +++ b/lightning/src/routing/gossip.rs @@ -971,7 +971,7 @@ impl EffectiveCapacity { /// Fees for routing via a given channel or a node #[derive(Eq, PartialEq, Copy, Clone, Debug, Hash)] pub struct RoutingFees { - /// Flat routing fee in satoshis + /// Flat routing fee in millisatoshis. pub base_msat: u32, /// Liquidity-based routing fee in millionths of a routed amount. /// In other words, 10000 is 1%. -- 2.39.5