From e9204ac72db38527ed442a9bda6fb628fc2bfca8 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Thu, 24 Dec 2020 17:47:32 +0200 Subject: [PATCH] chore: remove dead code --- ethers-core/src/types/crypto/mod.rs | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 ethers-core/src/types/crypto/mod.rs diff --git a/ethers-core/src/types/crypto/mod.rs b/ethers-core/src/types/crypto/mod.rs deleted file mode 100644 index 9264e81d..00000000 --- a/ethers-core/src/types/crypto/mod.rs +++ /dev/null @@ -1,8 +0,0 @@ -mod keys; -pub use keys::{PrivateKey, PublicKey}; - -mod signature; -pub use signature::Signature; - -mod hash; -pub use hash::Sha256Proxy;