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 a9e433b commit 6012d44Copy full SHA for 6012d44
lightning/src/ln/peers/mod.rs
@@ -13,14 +13,18 @@
13
//! Conduit enables message encryption and decryption, and automatically handles key rotation.
14
15
mod chacha;
16
-pub mod handler;
17
mod hkdf5869rfc;
18
19
#[cfg(feature = "fuzztarget")]
20
pub mod conduit;
21
#[cfg(not(feature = "fuzztarget"))]
22
mod conduit;
23
+#[cfg(feature = "fuzztarget")]
24
+pub mod handler;
25
+#[cfg(not(feature = "fuzztarget"))]
26
+mod handler;
27
+
28
29
pub mod handshake;
30
0 commit comments