Add BooleanBitfield struct

This commit is contained in:
Paul Hauner
2018-07-12 14:59:50 +10:00
parent 4c7b2eec2c
commit 5e362567e6
11 changed files with 161 additions and 17 deletions

View File

@@ -1,6 +1,7 @@
use super::ethereum_types::{ H256, H160 };
use super::active_state::ActiveState;
use super::crystallized_state::CrystallizedState;
use super::boolean_bitfield::BooleanBitfield;
pub use super::blake2::Blake2s;
@@ -33,4 +34,4 @@ impl StateHash {
}
}
pub type Bitfield = Vec<u8>;
pub type Bitfield = BooleanBitfield;