mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 12:47:05 +00:00
Merge branch 'payload-attestation-committee-cache' into fc-compliance
This commit is contained in:
@@ -20,6 +20,7 @@ fn build_result(repo_dir: &Path) -> Output {
|
||||
.arg("src/Nethermind/Nethermind.sln")
|
||||
.arg("-c")
|
||||
.arg("Release")
|
||||
.arg("-p:TreatWarningsAsErrors=false")
|
||||
.current_dir(repo_dir)
|
||||
.output()
|
||||
.expect("failed to make nethermind")
|
||||
|
||||
@@ -4,7 +4,6 @@ mod exit;
|
||||
|
||||
use beacon_chain::test_utils::{BeaconChainHarness, EphemeralHarnessType};
|
||||
use bls::Keypair;
|
||||
use fixed_bytes::FixedBytesExtended;
|
||||
use ssz::Encode;
|
||||
use std::env;
|
||||
use std::fs::{self, File};
|
||||
@@ -13,7 +12,7 @@ use std::path::{Path, PathBuf};
|
||||
use std::process::exit;
|
||||
use std::sync::LazyLock;
|
||||
use types::{BeaconState, EthSpec, SignedBeaconBlock, test_utils::generate_deterministic_keypairs};
|
||||
use types::{Hash256, MainnetEthSpec, Slot};
|
||||
use types::{MainnetEthSpec, Slot};
|
||||
|
||||
type E = MainnetEthSpec;
|
||||
|
||||
@@ -65,7 +64,6 @@ async fn get_harness<E: EthSpec>(
|
||||
harness
|
||||
.add_attested_blocks_at_slots(
|
||||
state,
|
||||
Hash256::zero(),
|
||||
(skip_to_slot.as_u64()..slot.as_u64())
|
||||
.map(Slot::new)
|
||||
.collect::<Vec<_>>()
|
||||
|
||||
Reference in New Issue
Block a user