We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13e38c commit 7bcf5a1Copy full SHA for 7bcf5a1
lightning/src/util/mod.rs
@@ -15,11 +15,14 @@ pub(crate) mod fuzz_wrappers;
15
pub mod events;
16
pub mod errors;
17
pub mod ser;
18
-pub mod zbase32;
19
pub mod message_signing;
20
21
pub(crate) mod byte_utils;
22
pub(crate) mod chacha20;
+#[cfg(feature = "fuzztarget")]
23
+pub mod zbase32;
24
+#[cfg(not(feature = "fuzztarget"))]
25
+pub(crate) mod zbase32;
26
#[cfg(not(feature = "fuzztarget"))]
27
pub(crate) mod poly1305;
28
pub(crate) mod chacha20poly1305rfc;
0 commit comments