1 // This file is Copyright its original authors, visible in version control
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
10 //! Some utility modules live here. See individual sub-modules for more info.
13 pub(crate) mod fuzz_wrappers;
20 pub mod message_signing;
29 pub(crate) mod base32;
31 pub(crate) mod atomic_counter;
32 pub(crate) mod byte_utils;
33 pub(crate) mod transaction_utils;
39 /// Logging macro utilities.
41 pub(crate) mod macro_logger;
43 // These have to come after macro_logger to build
47 #[cfg(any(test, feature = "_test_utils"))]
50 /// impls of traits that add exra enforcement on the way they're called. Useful for detecting state
51 /// machine errors and used in fuzz targets and tests.
52 #[cfg(any(test, feature = "_test_utils"))]
53 pub mod test_channel_signer;