Skip to content

Commit 5035638

Browse files
committed
rustfmt: Run on util/mod.rs
1 parent e2aca6b commit 5035638

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lightning/src/util/mod.rs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ pub(crate) mod fuzz_wrappers;
1515
#[macro_use]
1616
pub mod ser_macros;
1717

18+
#[cfg(fuzzing)]
19+
pub mod base32;
20+
#[cfg(not(fuzzing))]
21+
pub(crate) mod base32;
1822
pub mod errors;
19-
pub mod ser;
2023
pub mod message_signing;
2124
pub mod persist;
2225
pub mod scid_utils;
26+
pub mod ser;
2327
pub mod sweep;
2428
pub mod wakers;
25-
#[cfg(fuzzing)]
26-
pub mod base32;
27-
#[cfg(not(fuzzing))]
28-
pub(crate) mod base32;
2929

30-
pub(crate) mod atomic_counter;
3130
pub(crate) mod async_poll;
31+
pub(crate) mod atomic_counter;
3232
pub(crate) mod byte_utils;
33-
pub(crate) mod transaction_utils;
3433
pub mod hash_tables;
34+
pub(crate) mod transaction_utils;
3535

3636
#[cfg(feature = "std")]
3737
pub(crate) mod time;
@@ -43,8 +43,8 @@ pub mod indexed_map;
4343
pub(crate) mod macro_logger;
4444

4545
// These have to come after macro_logger to build
46-
pub mod logger;
4746
pub mod config;
47+
pub mod logger;
4848

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

0 commit comments

Comments
 (0)