@@ -28,6 +28,8 @@ use std::marker::PhantomData;
28
28
use std:: { fmt, str} ;
29
29
30
30
use bitcoin:: blockdata:: script;
31
+ use bitcoin:: hashes:: Hash ;
32
+ use bitcoin:: util:: taproot:: { self , LeafVersion , TapLeafHash , TAPROOT_LEAF_TAPSCRIPT } ;
31
33
32
34
pub use self :: context:: { BareCtx , Legacy , Segwitv0 , Tap } ;
33
35
@@ -358,7 +360,13 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> Miniscript<Pk, Ctx> {
358
360
where
359
361
Pk : ToPublicKey ,
360
362
{
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
+ {
362
370
satisfy:: Witness :: Stack ( stack) => {
363
371
Ctx :: check_witness :: < Pk , Ctx > ( & stack) ?;
364
372
Ok ( stack)
@@ -378,7 +386,17 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> Miniscript<Pk, Ctx> {
378
386
where
379
387
Pk : ToPublicKey ,
380
388
{
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
+ {
382
400
satisfy:: Witness :: Stack ( stack) => {
383
401
Ctx :: check_witness :: < Pk , Ctx > ( & stack) ?;
384
402
Ok ( stack)
@@ -449,6 +467,7 @@ serde_string_impl_pk!(Miniscript, "a miniscript", Ctx; ScriptContext);
449
467
#[ cfg( test) ]
450
468
mod tests {
451
469
470
+ use bitcoin:: util:: taproot:: TapLeafHash ;
452
471
use miniscript:: satisfy:: BitcoinSchnorrSig ;
453
472
use { Satisfier , ToPublicKey } ;
454
473
@@ -1038,7 +1057,11 @@ mod tests {
1038
1057
1039
1058
// a simple satisfier that always outputs the same signature
1040
1059
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 > {
1042
1065
Some ( BitcoinSchnorrSig {
1043
1066
sig : self . 0 ,
1044
1067
hash_ty : bitcoin:: util:: sighash:: SigHashType :: Default ,
0 commit comments