pallas_rolldb/chain/
mod.rs

1use pallas_crypto::hash::Hash;
2
3mod store;
4
5#[cfg(test)]
6mod tests;
7
8pub type BlockSlot = u64;
9pub type BlockHash = Hash<32>;
10pub type BlockBody = Vec<u8>;
11
12pub use store::*;