Initial commit

This commit is contained in:
Paul Hauner
2018-07-06 17:54:07 +10:00
commit 7db81b167f
18 changed files with 519 additions and 0 deletions

7
src/utils/types.rs Normal file
View File

@@ -0,0 +1,7 @@
use super::ethereum_types::{ H256, H160 };
pub type Sha256Digest = H256;
pub type Address = H160;
pub type Bitfield = Vec<u8>;