40cf650563
This is a massive commit which restructures the workspace, adds a very basic, untested, validator client and some very basic, non-functioning gRPC endpoints to the beacon-node.
15 lines
279 B
Rust
15 lines
279 B
Rust
extern crate blake2_rfc as blake2;
|
|
extern crate bls;
|
|
extern crate rocksdb;
|
|
|
|
mod disk_db;
|
|
mod memory_db;
|
|
pub mod stores;
|
|
mod traits;
|
|
|
|
use self::stores::COLUMNS;
|
|
|
|
pub use self::disk_db::DiskDB;
|
|
pub use self::memory_db::MemoryDB;
|
|
pub use self::traits::{ClientDB, DBError, DBValue};
|