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 @@ -667,9 +667,9 @@ impl Descriptor<DescriptorPublicKey> {
667
667
668
668
/// Derive a [`Descriptor`] with a concrete [`bitcoin::PublicKey`] at a given index
669
669
/// Removes all extended pubkeys and wildcards from the descriptor and only leaves
670
- /// concrete [`bitcoin::PublicKey`]. All [`crate::XOnlyKey `]s are converted to [`bitcoin::PublicKey`]
671
- /// by adding a default(0x02) y-coordinate. For [`crate::descriptor:: Tr`] descriptor,
672
- /// spend info is also cached.
670
+ /// concrete [`bitcoin::PublicKey`]. All [`bitcoin::XOnlyPublicKey `]s are converted
671
+ /// to [`bitcoin::PublicKey`]s by adding a default(0x02) y-coordinate. For [`Tr`]
672
+ /// descriptor, spend info is also cached.
673
673
///
674
674
/// # Examples
675
675
///
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ impl<'txin> Interpreter<'txin> {
217
217
}
218
218
219
219
/// 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 `]
221
221
/// should satisfy most use-cases.
222
222
/// Returns false if
223
223
/// - the signature verification fails
Original file line number Diff line number Diff line change @@ -559,8 +559,10 @@ pub trait PsbtExt {
559
559
/// # Arguments:
560
560
///
561
561
/// * `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
563
563
/// * `tapleaf_hash`: If the output is taproot, compute the sighash for this particular leaf.
564
+ ///
565
+ /// [`SighashCache`]: bitcoin::util::sighash::SighashCache
564
566
fn sighash_msg < T : Deref < Target = bitcoin:: Transaction > > (
565
567
& self ,
566
568
idx : usize ,
You can’t perform that action at this time.
0 commit comments