nakamoto-chain 0.4.0

Chain storage and fork selection used by the nakamoto crate.
Documentation
//! Functionality around proof-of-work chains.
#[allow(clippy::len_without_is_empty)]
#[allow(clippy::collapsible_if)]
#[allow(clippy::type_complexity)]
#[allow(clippy::inconsistent_struct_constructor)]
#[deny(
    unsafe_code,
    missing_docs,
    missing_debug_implementations,
    missing_copy_implementations
)]
pub mod block;
pub use block::*;

#[allow(clippy::inconsistent_struct_constructor)]
pub mod filter;

#[cfg(test)]
mod tests;