moving hash.rs to bigint in progress

This commit is contained in:
debris
2016-07-25 20:19:33 +02:00
parent 435ba186f8
commit 4dc1d42a93
10 changed files with 55 additions and 93 deletions

View File

@@ -126,9 +126,7 @@ pub mod standard;
pub mod from_json;
#[macro_use]
pub mod common;
pub mod numbers;
pub mod error;
pub mod hash;
pub mod bytes;
pub mod rlp;
pub mod misc;
@@ -140,7 +138,6 @@ pub mod migration;
pub mod overlaydb;
pub mod journaldb;
pub mod kvdb;
mod math;
pub mod crypto;
pub mod triehash;
pub mod trie;
@@ -164,7 +161,6 @@ pub use hashdb::*;
pub use memorydb::*;
pub use overlaydb::*;
pub use journaldb::JournalDB;
pub use math::*;
pub use crypto::*;
pub use triehash::*;
pub use trie::*;
@@ -178,7 +174,6 @@ pub use timer::*;
#[cfg(test)]
mod tests {
use super::numbers::*;
use std::str::FromStr;
#[test]