Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fc49ba0

Browse files
committedOct 30, 2021
Update satisfy API for taproot support
1 parent 19353be commit fc49ba0

File tree

2 files changed

+316
-83
lines changed

2 files changed

+316
-83
lines changed
 

‎src/miniscript/mod.rs

+26-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ use std::marker::PhantomData;
2828
use std::{fmt, str};
2929

3030
use bitcoin::blockdata::script;
31+
use bitcoin::hashes::Hash;
32+
use bitcoin::util::taproot::{self, LeafVersion, TapLeafHash, TAPROOT_LEAF_TAPSCRIPT};
3133

3234
pub use self::context::{BareCtx, Legacy, Segwitv0, Tap};
3335

@@ -358,7 +360,13 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> Miniscript<Pk, Ctx> {
358360
where
359361
Pk: ToPublicKey,
360362
{
361-
match satisfy::Satisfaction::satisfy(&self.node, &satisfier, self.ty.mall.safe).stack {
363+
// Only satisfactions for default versions (0xc0) are allowed.
364+
let ver = LeafVersion::from_unmasked_u8(TAPROOT_LEAF_TAPSCRIPT);
365+
let leaf_hash =
366+
TapLeafHash::from_inner(taproot::compute_leaf_hash(&self.encode(), ver).into_inner());
367+
match satisfy::Satisfaction::satisfy(&self.node, &satisfier, self.ty.mall.safe, &leaf_hash)
368+
.stack
369+
{
362370
satisfy::Witness::Stack(stack) => {
363371
Ctx::check_witness::<Pk, Ctx>(&stack)?;
364372
Ok(stack)
@@ -378,7 +386,17 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> Miniscript<Pk, Ctx> {
378386
where
379387
Pk: ToPublicKey,
380388
{
381-
match satisfy::Satisfaction::satisfy_mall(&self.node, &satisfier, self.ty.mall.safe).stack {
389+
let ver = LeafVersion::from_unmasked_u8(TAPROOT_LEAF_TAPSCRIPT);
390+
let leaf_hash =
391+
TapLeafHash::from_inner(taproot::compute_leaf_hash(&self.encode(), ver).into_inner());
392+
match satisfy::Satisfaction::satisfy_mall(
393+
&self.node,
394+
&satisfier,
395+
self.ty.mall.safe,
396+
&leaf_hash,
397+
)
398+
.stack
399+
{
382400
satisfy::Witness::Stack(stack) => {
383401
Ctx::check_witness::<Pk, Ctx>(&stack)?;
384402
Ok(stack)
@@ -449,6 +467,7 @@ serde_string_impl_pk!(Miniscript, "a miniscript", Ctx; ScriptContext);
449467
#[cfg(test)]
450468
mod tests {
451469

470+
use bitcoin::util::taproot::TapLeafHash;
452471
use miniscript::satisfy::BitcoinSchnorrSig;
453472
use {Satisfier, ToPublicKey};
454473

@@ -1038,7 +1057,11 @@ mod tests {
10381057

10391058
// a simple satisfier that always outputs the same signature
10401059
impl<Pk: ToPublicKey> Satisfier<Pk> for SimpleSatisfier {
1041-
fn lookup_schnorr_sig(&self, _pk: &Pk) -> Option<BitcoinSchnorrSig> {
1060+
fn lookup_tap_leaf_script_sig(
1061+
&self,
1062+
_pk: &Pk,
1063+
_h: &TapLeafHash,
1064+
) -> Option<BitcoinSchnorrSig> {
10421065
Some(BitcoinSchnorrSig {
10431066
sig: self.0,
10441067
hash_ty: bitcoin::util::sighash::SigHashType::Default,

0 commit comments

Comments
 (0)
Please sign in to comment.