Skip to content

Commit

Permalink
chore: rm use statement
Browse files Browse the repository at this point in the history
  • Loading branch information
merklefruit committed Oct 17, 2023
1 parent 2aff1df commit 77ef3be
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions beacon-api-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,9 @@ pub mod presets {
},
};

use crate::ClientTypes;

pub struct MainnetClientTypes;

impl ClientTypes for MainnetClientTypes {
impl crate::ClientTypes for MainnetClientTypes {
type SignedContributionAndProof = altair::SignedContributionAndProof;
type SyncCommitteeContribution = altair::SyncCommitteeContribution;
type BlindedBeaconBlock = BlindedBeaconBlock;
Expand Down Expand Up @@ -78,11 +76,9 @@ pub mod presets {
},
};

use crate::ClientTypes;

pub struct MinimalClientTypes;

impl ClientTypes for MinimalClientTypes {
impl crate::ClientTypes for MinimalClientTypes {
type SignedContributionAndProof = altair::SignedContributionAndProof;
type SyncCommitteeContribution = altair::SyncCommitteeContribution;
type BlindedBeaconBlock = BlindedBeaconBlock;
Expand Down

0 comments on commit 77ef3be

Please sign in to comment.