zksync_consensus_network 0.13.0

ZKsync consensus network component
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Stream encrypted with noise protocol.
//! http://www.noiseprotocol.org/noise.html
pub(crate) mod bytes;
mod stream;

#[cfg(test)]
pub(super) mod testonly;
#[cfg(test)]
mod tests;

pub(crate) use stream::*;