removed unused stuff

This commit is contained in:
debris 2015-12-15 16:36:38 +01:00
parent c7768e110e
commit 1e6694ec7f
3 changed files with 0 additions and 6 deletions

View File

View File

@ -50,7 +50,6 @@ pub mod uint;
pub mod bytes;
pub mod rlp;
pub mod vector;
pub mod db;
pub mod sha3;
pub mod hashdb;
pub mod memorydb;

View File

@ -396,7 +396,6 @@ macro_rules! construct_uint {
);
}
construct_uint!(U512, 8);
construct_uint!(U256, 4);
construct_uint!(U128, 2);
@ -410,10 +409,6 @@ impl From<U128> for U256 {
}
}
pub const ZERO_U256: U256 = U256([0x00u64; 4]);
pub const ONE_U256: U256 = U256([0x01u64, 0x00u64, 0x00u64, 0x00u64]);
pub const BAD_U256: U256 = U256([0xffffffffffffffffu64; 4]);