Skip to content

Commit

Permalink
rustfmt: Run on util/mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Sep 19, 2024
1 parent 667be59 commit d1362f3
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lightning/src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ pub(crate) mod fuzz_wrappers;
#[macro_use]
pub mod ser_macros;

#[cfg(fuzzing)]
pub mod base32;
#[cfg(not(fuzzing))]
pub(crate) mod base32;
pub mod errors;
pub mod ser;
pub mod message_signing;
pub mod persist;
pub mod scid_utils;
pub mod ser;
pub mod sweep;
pub mod wakers;
#[cfg(fuzzing)]
pub mod base32;
#[cfg(not(fuzzing))]
pub(crate) mod base32;

pub(crate) mod atomic_counter;
pub(crate) mod async_poll;
pub(crate) mod atomic_counter;
pub(crate) mod byte_utils;
pub(crate) mod transaction_utils;
pub mod hash_tables;
pub(crate) mod transaction_utils;

#[cfg(feature = "std")]
pub(crate) mod time;
Expand All @@ -43,8 +43,8 @@ pub mod indexed_map;
pub(crate) mod macro_logger;

// These have to come after macro_logger to build
pub mod logger;
pub mod config;
pub mod logger;

#[cfg(any(test, feature = "_test_utils"))]
pub mod test_utils;
Expand Down

0 comments on commit d1362f3

Please sign in to comment.