lighthouse-pulse/lighthouse/db/stores/mod.rs
2018-09-21 11:13:07 +10:00

14 lines
256 B
Rust

use super::{
ClientDB,
DBError,
};
mod block_store;
mod pow_chain_store;
pub use self::block_store::BlockStore;
pub use self::pow_chain_store::PoWChainStore;
const BLOCKS_DB_COLUMN: &str = "blocks";
const POW_CHAIN_DB_COLUMN: &str = "powchain";