We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 245bfed commit ac5537fCopy full SHA for ac5537f
src/lib.rs
@@ -396,13 +396,13 @@ where
396
P: MiniscriptKey,
397
Q: MiniscriptKey,
398
{
399
- /// Provides the translation public keys P -> Q
+ /// Translates public keys P -> Q.
400
fn f_pk(&mut self, pk: &P) -> Result<Q, E>;
401
402
- /// Provides the translation public keys hashes P::Hash -> Q::Hash
+ /// Translates public key hashes P::Hash -> Q::Hash.
403
fn f_pkh(&mut self, pkh: &P::Hash) -> Result<Q::Hash, E>;
404
405
- /// Provides the translation from P::Sha256 -> Q::Sha256
+ /// Translates sha256 hashes from P::Sha256 -> Q::Sha256
406
fn f_sha256(&mut self, sha256: &P::Sha256) -> Result<Q::Sha256, E>;
407
}
408
0 commit comments