cruzbit 1.2.0

A simple decentralized peer-to-peer ledger implementation
Documentation
#![allow(clippy::too_many_arguments)]

pub mod balance_cache;
pub mod block;
pub mod block_header_hasher;
pub mod block_queue;
pub mod block_storage;
pub mod block_storage_disk;
pub mod checkpoints;
pub mod constants;
pub mod dns;
pub mod error;
pub mod genesis;
#[cfg(any(feature = "cuda", feature = "opencl"))]
pub mod gpu;
pub mod irc;
pub mod ledger;
pub mod ledger_disk;
pub mod miner;
pub mod peer;
pub mod peer_manager;
pub mod peer_storage;
pub mod peer_storage_disk;
pub mod processor;
pub mod protocol;
pub mod shutdown;
pub mod tls;
pub mod transaction;
pub mod transaction_queue;
pub mod transaction_queue_memory;
pub mod utils;
pub mod wallet;