You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Sign a transaction with all the wallet's signers, in the order specified by every signer's
1748
-
/// [`SignerOrdering`]. This function returns the `Result` type with an encapsulated `bool` that has the value true if the PSBT was finalized, or false otherwise.
1749
-
///
1750
-
/// The [`SignOptions`] can be used to tweak the behavior of the software signers, and the way
1751
-
/// the transaction is finalized at the end. Note that it can't be guaranteed that *every*
1752
-
/// signers will follow the options, but the "software signers" (WIF keys and `xprv`) defined
1753
-
/// in this library will.
1754
-
///
1755
-
/// ## Example
1756
-
///
1757
-
/// ```
1758
-
/// # use std::str::FromStr;
1759
-
/// # use bitcoin::*;
1760
-
/// # use bdk_wallet::*;
1761
-
/// # use bdk_wallet::ChangeSet;
1762
-
/// # use bdk_wallet::error::CreateTxError;
1763
-
/// # let descriptor = "wpkh(tpubD6NzVbkrYhZ4Xferm7Pz4VnjdcDPFyjVu5K4iZXQ4pVN8Cks4pHVowTBXBKRhX64pkRyJZJN5xAKj4UDNnLPb5p2sSKXhewoYx5GbTdUFWq/*)";
1764
-
/// # let mut wallet = doctest_wallet!();
1765
-
/// # let to_address = Address::from_str("2N4eQYCbKUHCCTUjBJeHcJp9ok6J2GZsTDt").unwrap().assume_checked();
0 commit comments