From b5a120c649a17302f3825c45efd9ea0c3b2dd266 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Wed, 13 Jul 2022 11:13:05 +0200 Subject: [PATCH] Missing newlines --- src/wallet/signer.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wallet/signer.rs b/src/wallet/signer.rs index e93618da..cb190bf9 100644 --- a/src/wallet/signer.rs +++ b/src/wallet/signer.rs @@ -667,10 +667,12 @@ pub struct SignOptions { /// /// Defaults to `false` which will only allow signing using `SIGHASH_ALL`. pub allow_all_sighashes: bool, + /// Whether to remove partial_sigs from psbt inputs while finalizing psbt. /// /// Defaults to `true` which will remove partial_sigs after finalizing. pub remove_partial_sigs: bool, + /// Whether to try finalizing psbt input after the inputs are signed. /// /// Defaults to `true` which will try fianlizing psbt after inputs are signed.