From f79f20d4e6d66a195e82baab3d3e304516bf5e8b Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 3 Apr 2024 12:35:00 +1100 Subject: [PATCH] Remove stale rustdoc We recently added support for signing taproot inputs but forgot to update the docs to reflect this. Remove stale rustdoc from `Psbt::sign` function. --- bitcoin/src/psbt/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/bitcoin/src/psbt/mod.rs b/bitcoin/src/psbt/mod.rs index 05843d8d..274fa225 100644 --- a/bitcoin/src/psbt/mod.rs +++ b/bitcoin/src/psbt/mod.rs @@ -283,9 +283,6 @@ impl Psbt { /// Attempts to create _all_ the required signatures for this PSBT using `k`. /// - /// **NOTE**: Taproot inputs are, as yet, not supported by this function. We currently only - /// attempt to sign ECDSA inputs. - /// /// If you just want to sign an input with one specific key consider using `sighash_ecdsa`. This /// function does not support scripts that contain `OP_CODESEPARATOR`. ///