mirror of
https://gitlab.com/pulsechaincom/lighthouse-pulse.git
synced 2025-01-04 18:14:30 +00:00
Ensure epoch processing benches get new eth1 data
This commit is contained in:
parent
3f98849362
commit
c33e299176
@ -174,7 +174,12 @@ fn build_block(state: &mut BeaconState, keypairs: &[Keypair], spec: &ChainSpec)
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
builder.build(&keypair.sk, &state.fork, spec)
|
let mut block = builder.build(&keypair.sk, &state.fork, spec);
|
||||||
|
|
||||||
|
// Set the eth1 data to be different from the state.
|
||||||
|
block.eth1_data.block_hash = Hash256::from_slice(&vec![42; 32]);
|
||||||
|
|
||||||
|
block
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Run the detailed benchmarking suite on the given `BeaconState`.
|
/// Run the detailed benchmarking suite on the given `BeaconState`.
|
||||||
|
Loading…
Reference in New Issue
Block a user