From 1c83e612adcde38f1d92d3e97885ad2793676167 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 16 Aug 2024 20:46:37 +0000 Subject: [PATCH] Remove note about `std`/`no-std` scorer serialization compat In 81389dee306d960a8030bec5ffa304004148ce85 we removed a note about mixing the `std` and `no-std` feature when de/serializing `ProbabilisticScorer`s but forgot to note that there was a second copy of that note in the module documentation. This removes that note. --- lightning/src/routing/scoring.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lightning/src/routing/scoring.rs b/lightning/src/routing/scoring.rs index adf702571..480cbc5b3 100644 --- a/lightning/src/routing/scoring.rs +++ b/lightning/src/routing/scoring.rs @@ -49,11 +49,6 @@ //! # } //! ``` //! -//! # Note -//! -//! Persisting when built with feature `no-std` and restoring without it, or vice versa, uses -//! different types and thus is undefined. -//! //! [`find_route`]: crate::routing::router::find_route use crate::ln::msgs::DecodeError; -- 2.39.5