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> {
677
677
678
678
/// Derive a [`Descriptor`] with a concrete [`bitcoin::PublicKey`] at a given index
679
679
/// 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.
683
683
///
684
684
/// # Examples
685
685
///
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