Skip to content

Commit

Permalink
refactor(signer)!: rename module signers to signer and constrain …
Browse files Browse the repository at this point in the history
…visibility
  • Loading branch information
David-Petrov committed Aug 15, 2024
1 parent 9078e25 commit 377aa78
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions crates/common/src/signer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ use ssz_derive::{Decode, Encode};
use tree_hash::TreeHash;

pub mod schemes;
pub mod signers;
#[allow(clippy::module_inception)]
mod signer;

pub use schemes::{bls::BlsSecretKey, ecdsa::EcdsaSecretKey};
pub use signers::{ConsensusSigner, Signer};
pub use signer::{ConsensusSigner, Signer};

pub type Pubkey<T> = <T as SecretKey>::PublicKey;

Expand Down
File renamed without changes.

0 comments on commit 377aa78

Please sign in to comment.