Begin updating tests to reflect changes to bitfield

This commit is contained in:
Alex Stokes
2018-11-15 09:20:46 -08:00
committed by mjkeating
parent b1f8046563
commit f611602235
5 changed files with 9 additions and 11 deletions

View File

@@ -63,7 +63,7 @@ pub fn generate_attestation(
signing_keys: &[Option<SecretKey>],
block_store: &BeaconBlockStore<MemoryDB>,
) -> AttestationRecord {
let mut attester_bitfield = Bitfield::new();
let mut attester_bitfield = Bitfield::from_elem(signing_keys.len(), false);
let mut aggregate_sig = AggregateSignature::new();
let parent_hashes_slice = {