V1 Window/Ledger based on RocksDb (#1712)

* Add rocksdb

* Implement new ledger module based on RocksDb
This commit is contained in:
carllin
2018-11-09 18:30:26 -08:00
committed by GitHub
parent fc55835932
commit bfcdec95cb
7 changed files with 549 additions and 4 deletions

View File

@@ -27,6 +27,7 @@ pub mod client;
pub mod cluster_info;
pub mod budget_program;
pub mod compute_leader_finality_service;
pub mod db_ledger;
pub mod drone;
pub mod entry;
#[cfg(feature = "erasure")]
@@ -104,6 +105,7 @@ extern crate pnet_datalink;
extern crate rayon;
extern crate reqwest;
extern crate ring;
extern crate rocksdb;
extern crate serde;
#[macro_use]
extern crate serde_derive;