X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Frouting%2Frouter.rs;fp=lightning%2Fsrc%2Frouting%2Frouter.rs;h=13356cc1c74334193fed69be42a05b718d2ab89d;hb=32d13a2ff8796c2edf2177751eab02242ae10216;hp=1d4234d9db4f0f6154d801d06f90f892d7f21730;hpb=0dfcacd22c23f69b6526c9c6507d21427a2b7ccb;p=rust-lightning diff --git a/lightning/src/routing/router.rs b/lightning/src/routing/router.rs index 1d4234d9..13356cc1 100644 --- a/lightning/src/routing/router.rs +++ b/lightning/src/routing/router.rs @@ -3831,7 +3831,7 @@ mod tests { } } - #[cfg(not(feature = "no_std"))] + #[cfg(not(feature = "no-std"))] pub(super) fn random_init_seed() -> u64 { // Because the default HashMap in std pulls OS randomness, we can use it as a (bad) RNG. use core::hash::{BuildHasher, Hasher}; @@ -3839,11 +3839,11 @@ mod tests { println!("Using seed of {}", seed); seed } - #[cfg(not(feature = "no_std"))] + #[cfg(not(feature = "no-std"))] use util::ser::Readable; #[test] - #[cfg(not(feature = "no_std"))] + #[cfg(not(feature = "no-std"))] fn generate_routes() { let mut d = match super::test_utils::get_route_file() { Ok(f) => f, @@ -3871,7 +3871,7 @@ mod tests { } #[test] - #[cfg(not(feature = "no_std"))] + #[cfg(not(feature = "no-std"))] fn generate_routes_mpp() { let mut d = match super::test_utils::get_route_file() { Ok(f) => f, @@ -3899,7 +3899,7 @@ mod tests { } } -#[cfg(all(test, not(feature = "no_std")))] +#[cfg(all(test, not(feature = "no-std")))] pub(crate) mod test_utils { use std::fs::File; /// Tries to open a network graph file, or panics with a URL to fetch it. @@ -3926,7 +3926,7 @@ pub(crate) mod test_utils { } } -#[cfg(all(test, feature = "unstable", not(feature = "no_std")))] +#[cfg(all(test, feature = "unstable", not(feature = "no-std")))] mod benches { use super::*; use util::logger::{Logger, Record};