//! Provides a customizable base for a blockchain implementation
/// Version of the protocol as appearing in block headers.
pub const VERSION: u8 = 1;
/// Lenght of the Hash block.
pub const BLOCKHASHLEN : usize = 32; // 2^8 * 2^5
/// Hash block representation.
pub type BlockHash = ; // to store SHA256
pub use crateByteable;
pub use crateHashable;
// thanks to https://github.com/GeekLaunch/blockchain-rust
pub use crateBlockchainBlock;