Skip to content

Commit

Permalink
new lines corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinZavior committed Nov 7, 2024
1 parent a4f9a00 commit e0251b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions bdk-ffi/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ use bdk_wallet::Balance as BdkBalance;
use bdk_wallet::KeychainKind;
use bdk_wallet::LocalOutput as BdkLocalOutput;
use bdk_wallet::Update as BdkUpdate;

use std::collections::HashMap;
use std::sync::{Arc, Mutex};

Expand Down
3 changes: 2 additions & 1 deletion bdk-ffi/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,8 @@ impl Wallet {

pub(crate) fn sign(
&self,
psbt: Arc<Psbt>, // sign_options: Option<SignOptions>,
psbt: Arc<Psbt>,
// sign_options: Option<SignOptions>,
) -> Result<bool, SignerError> {
let mut psbt = psbt.0.lock().unwrap();
self.get_wallet()
Expand Down

0 comments on commit e0251b4

Please sign in to comment.