Block primitive (#11)

* initial primitives

* add block primitives
This commit is contained in:
Robert Habermeier
2017-11-10 15:03:40 +01:00
committed by Tomasz Drwięga
parent dbb123d09c
commit 74ec849f7e
2 changed files with 75 additions and 1 deletions
+5 -1
View File
@@ -28,8 +28,12 @@ extern crate fixed_hash;
#[macro_use]
extern crate uint as uint_crate;
pub mod uint;
pub mod block;
pub mod hash;
pub mod uint;
/// Alias to 160-bit hash when used in the context of an account address.
pub type Address = hash::H160;
#[cfg(test)]
mod tests {