Skip to content

Commit

Permalink
fixes #242: unneeded type parameter in SigningKey::derive_from_path (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-ricketts authored Jun 9, 2022
1 parent 773b5b4 commit ed737c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmrs/src/crypto/secp256k1/signing_key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<S>(
pub fn derive_from_path(
seed: impl AsRef<[u8]>,
path: &bip32::DerivationPath,
) -> bip32::Result<Self> {
Expand Down

0 comments on commit ed737c6

Please sign in to comment.