mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-11 04:31:51 +00:00
12 lines
249 B
Rust
12 lines
249 B
Rust
use super::ethereum_types::{ H256, H160 };
|
|
use super::boolean_bitfield::BooleanBitfield;
|
|
|
|
pub use super::blake2::Blake2s;
|
|
pub use super::ethereum_types::U256;
|
|
|
|
pub type Hash256 = H256;
|
|
|
|
pub type Address = H160;
|
|
|
|
pub type Bitfield = BooleanBitfield;
|