fix blobs by range test

This commit is contained in:
realbigsean 2023-08-09 15:36:39 -04:00
parent 4da6ca73d7
commit 9e8a289d21
No known key found for this signature in database
GPG Key ID: BE1B3DB104F6C788

View File

@ -30,7 +30,7 @@ use std::time::Duration;
use tokio::sync::mpsc;
use types::blob_sidecar::FixedBlobSidecarList;
use types::{
Attestation, AttesterSlashing, Epoch, EthSpec, Hash256, MainnetEthSpec, ProposerSlashing,
Attestation, AttesterSlashing, Epoch, Hash256, MainnetEthSpec, ProposerSlashing,
SignedAggregateAndProof, SignedBeaconBlock, SignedBlobSidecarList, SignedVoluntaryExit, Slot,
SubnetId,
};
@ -90,7 +90,7 @@ impl TestRig {
pub async fn new_parametric(chain_length: u64, enable_backfill_rate_limiting: bool) -> Self {
// This allows for testing voluntary exits without building out a massive chain.
let mut spec = E::default_spec();
let mut spec = test_spec::<E>();
spec.shard_committee_period = 2;
let harness = BeaconChainHarness::builder(MainnetEthSpec)