mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-10 04:51:22 +00:00
11 lines
143 B
Rust
11 lines
143 B
Rust
use super::{
|
|
ClientDB,
|
|
DBError,
|
|
};
|
|
|
|
mod block_store;
|
|
|
|
pub use self::block_store::BlockStore;
|
|
|
|
const BLOCKS_DB_COLUMN: &str = "blocks";
|