Add DisconnectPeer events
[rust-lightning] / src / util / mod.rs
index b7578bce407caca84ef77d675edcb4ac8135208e..008a9e1d7e1e0649b4fe07d92f1f2e142751adcc 100644 (file)
@@ -1,4 +1,3 @@
-pub mod transaction_utils;
 pub mod events;
 
 pub(crate) mod byte_utils;
@@ -6,6 +5,10 @@ pub(crate) mod chacha20poly1305rfc;
 pub(crate) mod internal_traits;
 pub(crate) mod rng;
 pub(crate) mod sha2;
+pub(crate) mod transaction_utils;
+
+#[cfg(feature = "fuzztarget")]
+pub use self::rng::reset_rng_state;
 
 #[cfg(test)]
 pub(crate) mod test_utils;