File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -677,9 +677,9 @@ impl Descriptor<DescriptorPublicKey> {
677677
678678 /// Derive a [`Descriptor`] with a concrete [`bitcoin::PublicKey`] at a given index
679679 /// Removes all extended pubkeys and wildcards from the descriptor and only leaves
680- /// concrete [`bitcoin::PublicKey`]. All [`crate::XOnlyKey `]s are converted to [`bitcoin::PublicKey`]
681- /// by adding a default(0x02) y-coordinate. For [`crate::descriptor:: Tr`] descriptor,
682- /// spend info is also cached.
680+ /// concrete [`bitcoin::PublicKey`]. All [`bitcoin::XOnlyPublicKey `]s are converted
681+ /// to [`bitcoin::PublicKey`]s by adding a default(0x02) y-coordinate. For [`Tr`]
682+ /// descriptor, spend info is also cached.
683683 ///
684684 /// # Examples
685685 ///
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ impl<'txin> Interpreter<'txin> {
217217 }
218218
219219 /// Verify a signature for a given transaction and prevout information
220- /// This is a low level API, [`Interpreter::iter`] or [`Interpreter::iter_assume_sig `]
220+ /// This is a low level API, [`Interpreter::iter`] or [`Interpreter::iter_assume_sigs `]
221221 /// should satisfy most use-cases.
222222 /// Returns false if
223223 /// - the signature verification fails
Original file line number Diff line number Diff line change @@ -559,8 +559,10 @@ pub trait PsbtExt {
559559 /// # Arguments:
560560 ///
561561 /// * `idx`: The input index of psbt to sign
562- /// * `cache`: The [`sighash:: SighashCache`] for used to cache/read previously cached computations
562+ /// * `cache`: The [`SighashCache`] for used to cache/read previously cached computations
563563 /// * `tapleaf_hash`: If the output is taproot, compute the sighash for this particular leaf.
564+ ///
565+ /// [`SighashCache`]: bitcoin::util::sighash::SighashCache
564566 fn sighash_msg < T : Deref < Target = bitcoin:: Transaction > > (
565567 & self ,
566568 idx : usize ,
You can’t perform that action at this time.
0 commit comments