From 42de5b818613b33178932d9fd48d3c466865513d Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sun, 30 Jul 2023 17:10:38 +0000 Subject: [PATCH] Drop unicode in documentation Javadocs refuse unicode and as our rustdocs get copied over to Java bindings (and thus get run through javadocs) we can't have unicode in our rustdocs. --- lightning/src/routing/scoring.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightning/src/routing/scoring.rs b/lightning/src/routing/scoring.rs index b47cbbef..e418e5d7 100644 --- a/lightning/src/routing/scoring.rs +++ b/lightning/src/routing/scoring.rs @@ -524,7 +524,7 @@ pub struct ProbabilisticScoringFeeParameters { pub manual_node_penalties: HashMap, /// This penalty is applied when `htlc_maximum_msat` is equal to or larger than half of the - /// channel's capacity, (ie. htlc_maximum_msat ≥ 0.5 * channel_capacity) which makes us + /// channel's capacity, (ie. htlc_maximum_msat >= 0.5 * channel_capacity) which makes us /// prefer nodes with a smaller `htlc_maximum_msat`. We treat such nodes preferentially /// as this makes balance discovery attacks harder to execute, thereby creating an incentive /// to restrict `htlc_maximum_msat` and improve privacy. -- 2.30.2