implement `From<PublicKey>` for `PubkeyHash`
This commit is contained in:
parent
ed9012c25c
commit
81f81caa04
|
@ -296,6 +296,12 @@ impl FromStr for PublicKey {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl From<PublicKey> for PubkeyHash {
|
||||||
|
fn from(key: PublicKey) -> PubkeyHash {
|
||||||
|
key.pubkey_hash()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// A Bitcoin ECDSA private key
|
/// A Bitcoin ECDSA private key
|
||||||
#[derive(Copy, Clone, PartialEq, Eq)]
|
#[derive(Copy, Clone, PartialEq, Eq)]
|
||||||
#[cfg_attr(feature = "std", derive(Debug))]
|
#[cfg_attr(feature = "std", derive(Debug))]
|
||||||
|
|
Loading…
Reference in New Issue