zebra/zebra-chain/src/work.rs

11 lines
168 B
Rust

//! Proof-of-work implementation.
pub mod difficulty;
pub mod equihash;
mod u256;
#[cfg(any(test, feature = "proptest-impl"))]
mod arbitrary;
#[cfg(test)]
mod tests;