state transition tests: use TreeHashVector

This commit is contained in:
Michael Sproul 2019-04-17 18:07:28 +10:00
parent 332795e8b7
commit b201c52140
No known key found for this signature in database
GPG Key ID: 77B1309D2E54E914

View File

@ -16,7 +16,7 @@ pub struct ExpectedState {
pub current_epoch_attestations: Option<Vec<PendingAttestation>>, pub current_epoch_attestations: Option<Vec<PendingAttestation>>,
pub historical_roots: Option<Vec<Hash256>>, pub historical_roots: Option<Vec<Hash256>>,
pub finalized_epoch: Option<Epoch>, pub finalized_epoch: Option<Epoch>,
pub latest_block_roots: Option<Vec<Hash256>>, pub latest_block_roots: Option<TreeHashVector<Hash256>>,
} }
impl ExpectedState { impl ExpectedState {