Refactors ethcore to use journaldb crate (#6693)

This commit is contained in:
Dmitry Kashitsyn
2017-10-17 11:20:24 +07:00
parent e2b96e1fe0
commit c0fc83988f
14 changed files with 32 additions and 15 deletions

View File

@@ -112,18 +112,12 @@ extern crate util_error as error;
#[cfg(test)]
extern crate kvdb_memorydb;
#[macro_use]
extern crate log as rlog;
pub mod misc;
pub mod overlaydb;
pub mod journaldb;
pub use misc::*;
pub use hashdb::*;
pub use memorydb::MemoryDB;
pub use overlaydb::*;
pub use journaldb::JournalDB;
/// 160-bit integer representing account address
pub type Address = bigint::hash::H160;