Skip to content

Commit 980664b

Browse files
committed
format whitespaces
Signed-off-by: Harshil Jani <[email protected]>
1 parent 0ffd4a2 commit 980664b

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

examples/plan_spend.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ fn main() {
142142
.update_with_descriptor_unchecked(&bridge_descriptor)
143143
.unwrap();
144144
input.witness_utxo = Some(witness_utxo.clone());
145-
145+
146146
// Push the PSBT Input and declare an PSBT Output Structure
147147
psbt.inputs.push(input);
148148
psbt.outputs.push(psbt::Output::default());

examples/psbt_sign_finalize.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,15 +130,15 @@ fn main() {
130130

131131
// Obtain the result of the plan based on provided assets
132132
let result = bridge_descriptor.clone().get_plan(&assets);
133-
133+
134134
// Creating a PSBT Input
135135
let mut input = psbt::Input::default();
136136
result.unwrap().update_psbt_input(&mut input);
137137
input
138138
.update_with_descriptor_unchecked(&bridge_descriptor)
139139
.unwrap();
140140
input.witness_utxo = Some(witness_utxo.clone());
141-
141+
142142
// Push the PSBT Input and declare an PSBT Output Structure
143143
psbt.inputs.push(input);
144144
psbt.outputs.push(psbt::Output::default());

src/miniscript/satisfy.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -474,12 +474,12 @@ impl<Pk: MiniscriptKey + ToPublicKey> Placeholder<Pk> {
474474
pub fn satisfy_self<Sat: Satisfier<Pk>>(&self, sat: &Sat) -> Option<Vec<u8>> {
475475
match self {
476476
Placeholder::Pubkey(pk, size) => {
477-
if *size==34 as usize {
477+
if *size == 34 as usize {
478478
return Some(pk.to_public_key().to_bytes());
479-
}else{
480-
return Some(pk.to_x_only_pubkey().serialize().to_vec())
479+
} else {
480+
return Some(pk.to_x_only_pubkey().serialize().to_vec());
481481
}
482-
},//length = 32 for XOnly
482+
} //length = 32 for XOnly
483483
Placeholder::Hash256Preimage(h) => sat.lookup_hash256(h).map(|p| p.to_vec()),
484484
Placeholder::Sha256Preimage(h) => sat.lookup_sha256(h).map(|p| p.to_vec()),
485485
Placeholder::Hash160Preimage(h) => sat.lookup_hash160(h).map(|p| p.to_vec()),

src/psbt/finalizer.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ use bitcoin::taproot::LeafVersion;
1616
use bitcoin::{PublicKey, Script, ScriptBuf, TxOut, Witness};
1717

1818
use super::{sanity_check, Error, InputError, Psbt, PsbtInputSatisfier};
19+
use crate::prelude::*;
1920
use crate::util::witness_size;
2021
use crate::{
21-
interpreter, BareCtx, Descriptor, ExtParams, Legacy, Miniscript, Satisfier, Segwitv0, Tap,
22+
interpreter, BareCtx, Descriptor, ExtParams, Legacy, Miniscript, Satisfier, Segwitv0, SigType,
23+
Tap, ToPublicKey,
2224
};
23-
use crate::{prelude::*, SigType, ToPublicKey};
2425

2526
// Satisfy the taproot descriptor. It is not possible to infer the complete
2627
// descriptor from psbt because the information about all the scripts might not

0 commit comments

Comments
 (0)