//! Blockchain related types use crate::blockchain::{ block::Block, consensus::Sealed, header::BlockHeader, }; pub mod block; pub mod consensus; pub mod header; pub mod primitives; /// Block header and the associated consensus info pub type SealedBlockHeader = Sealed; /// Block and the associated consensus info pub type SealedBlock = Sealed;