Skip to content

Commit 7bcf5a1

Browse files
committed
Changes zbase32 crate from pub to pub(crate)
1 parent f13e38c commit 7bcf5a1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lightning/src/util/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ pub(crate) mod fuzz_wrappers;
1515
pub mod events;
1616
pub mod errors;
1717
pub mod ser;
18-
pub mod zbase32;
1918
pub mod message_signing;
2019

2120
pub(crate) mod byte_utils;
2221
pub(crate) mod chacha20;
22+
#[cfg(feature = "fuzztarget")]
23+
pub mod zbase32;
24+
#[cfg(not(feature = "fuzztarget"))]
25+
pub(crate) mod zbase32;
2326
#[cfg(not(feature = "fuzztarget"))]
2427
pub(crate) mod poly1305;
2528
pub(crate) mod chacha20poly1305rfc;

0 commit comments

Comments
 (0)