fix imports

This commit is contained in:
realbigsean
2024-06-21 10:57:35 -04:00
parent 09141ec51a
commit 8fc533368c

View File

@@ -19,9 +19,9 @@ use std::marker::PhantomData;
use std::sync::Arc; use std::sync::Arc;
use tree_hash::TreeHash; use tree_hash::TreeHash;
use types::{ use types::{
AggregateSignature, AttestationData, ChainSpec, Epoch, EthSpec, ForkName, Hash256, AggregateSignature, AttestationData, ChainSpec, Epoch, EthSpec, Hash256, IndexedAttestation,
IndexedAttestation, IndexedAttestationBase, IndexedAttestationElectra, ProposerSlashing, IndexedAttestationBase, IndexedAttestationElectra, ProposerSlashing, SignedBeaconBlockHeader,
SignedBeaconBlockHeader, Slot, VariableList, Slot, VariableList,
}; };
/// Current database schema version, to check compatibility of on-disk DB with software. /// Current database schema version, to check compatibility of on-disk DB with software.
@@ -819,7 +819,7 @@ impl<E: EthSpec> SlasherDB<E> {
#[cfg(test)] #[cfg(test)]
mod test { mod test {
use super::*; use super::*;
use types::{Checkpoint, MainnetEthSpec, Unsigned}; use types::{Checkpoint, ForkName, MainnetEthSpec, Unsigned};
type E = MainnetEthSpec; type E = MainnetEthSpec;