Merge pull request #163 from ariard/claim_revoked_htlc_tx
[rust-lightning] / src / util / mod.rs
index 8edd5c7709ccd554cad50da3822209cf053a8475..308825855bd934f46e314477bb432cdda2fb7aa1 100644 (file)
@@ -1,4 +1,5 @@
 pub mod events;
+pub mod errors;
 
 pub(crate) mod byte_utils;
 pub(crate) mod chacha20poly1305rfc;
@@ -20,4 +21,11 @@ pub(crate) mod test_utils;
 #[macro_use]
 pub(crate) mod macro_logger;
 
+#[cfg(feature = "fuzztarget")]
+#[macro_use]
+pub mod ser;
+#[cfg(not(feature = "fuzztarget"))]
+#[macro_use]
+pub(crate) mod ser;
+
 pub mod logger;