zebra_network/
protocol.rs

1//! Zcash network protocol handling.
2
3/// The external Bitcoin-based protocol.
4pub mod external;
5/// The internal request/response protocol.
6pub mod internal;
7/// Newtype wrappers giving semantic meaning to primitive datatypes.
8pub mod types;