From 27c97cb5b38685734be6d3548d8691e6bfadbf11 Mon Sep 17 00:00:00 2001 From: Chris Ricketts Date: Thu, 9 Jun 2022 10:20:59 +0100 Subject: [PATCH] fixes #242: unneeded type parameter in SigningKey::derive_from_path --- cosmrs/src/crypto/secp256k1/signing_key.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmrs/src/crypto/secp256k1/signing_key.rs b/cosmrs/src/crypto/secp256k1/signing_key.rs index 097bf9d1..734a97e0 100644 --- a/cosmrs/src/crypto/secp256k1/signing_key.rs +++ b/cosmrs/src/crypto/secp256k1/signing_key.rs @@ -49,7 +49,7 @@ impl SigningKey { /// therefore you can use `parse()` to parse it from a string. #[cfg(feature = "bip32")] #[cfg_attr(docsrs, doc(cfg(feature = "bip32")))] - pub fn derive_from_path( + pub fn derive_from_path( seed: impl AsRef<[u8]>, path: &bip32::DerivationPath, ) -> bip32::Result {