Cleanup single attestation imports

This commit is contained in:
Eitan Seri-Levi
2025-01-07 19:42:23 +07:00
parent 12e442c2e6
commit e95f00342b
11 changed files with 8 additions and 11 deletions

View File

@@ -81,7 +81,7 @@ use tokio_stream::{
StreamExt,
};
use types::{
attestation::SingleAttestation, fork_versioned_response::EmptyMetadata, Attestation,
SingleAttestation, fork_versioned_response::EmptyMetadata, Attestation,
AttestationData, AttestationShufflingId, AttesterSlashing, BeaconStateError, CommitteeCache,
ConfigAndPreset, Epoch, EthSpec, ForkName, ForkVersionedResponse, Hash256,
ProposerPreparationData, ProposerSlashing, RelativeEpoch, SignedAggregateAndProof,

View File

@@ -50,7 +50,7 @@ use tokio::sync::{
mpsc::{Sender, UnboundedSender},
oneshot,
};
use types::{attestation::SingleAttestation, Attestation, EthSpec};
use types::{SingleAttestation, Attestation, EthSpec};
// Error variants are only used in `Debug` and considered `dead_code` by the compiler.
#[derive(Debug)]