lighthouse/lighthouse/utils/types.rs
2018-09-19 14:46:58 +10:00

13 lines
248 B
Rust

extern crate boolean_bitfield;
use super::ethereum_types::{ H256, H160 };
use self::boolean_bitfield::BooleanBitfield;
pub use super::ethereum_types::U256;
pub type Hash256 = H256;
pub type Address = H160;
pub type Bitfield = BooleanBitfield;