File tree 2 files changed +29
-9
lines changed
2 files changed +29
-9
lines changed Original file line number Diff line number Diff line change @@ -228,15 +228,24 @@ impl<Pk: MiniscriptKey> Policy<Pk> {
228
228
// TODO: We might require other compile errors for Taproot.
229
229
#[ cfg( feature = "compiler" ) ]
230
230
pub fn compile_tr ( & self , unspendable_key : Option < Pk > ) -> Result < Descriptor < Pk > , Error > {
231
- let ( internal_key, policy) = self . clone ( ) . extract_key ( unspendable_key) ?;
232
- let tree = Descriptor :: new_tr (
233
- internal_key,
234
- match policy {
235
- Policy :: Trivial => None ,
236
- policy => Some ( policy. compile_tr_policy ( ) ?) ,
237
- } ,
238
- ) ?;
239
- Ok ( tree)
231
+ self . is_valid ( ) ?; // Check for validity
232
+ match self . is_safe_nonmalleable ( ) {
233
+ ( false , _) => Err ( Error :: from ( CompilerError :: TopLevelNonSafe ) ) ,
234
+ ( _, false ) => Err ( Error :: from (
235
+ CompilerError :: ImpossibleNonMalleableCompilation ,
236
+ ) ) ,
237
+ _ => {
238
+ let ( internal_key, policy) = self . clone ( ) . extract_key ( unspendable_key) ?;
239
+ let tree = Descriptor :: new_tr (
240
+ internal_key,
241
+ match policy {
242
+ Policy :: Trivial => None ,
243
+ policy => Some ( policy. compile_tr_policy ( ) ?) ,
244
+ } ,
245
+ ) ?;
246
+ Ok ( tree)
247
+ }
248
+ }
240
249
}
241
250
242
251
/// Compile the descriptor into an optimized `Miniscript` representation
Original file line number Diff line number Diff line change @@ -406,5 +406,16 @@ mod tests {
406
406
Descriptor :: new_tr ( unspendable_key. clone ( ) , Some ( tree) ) . unwrap ( ) ;
407
407
assert_eq ! ( descriptor, expected_descriptor) ;
408
408
}
409
+
410
+ {
411
+ // Invalid policy compilation (Duplicate PubKeys)
412
+ let policy: Concrete < String > = policy_str ! ( "or(and(pk(A),pk(B)),and(pk(A),pk(D)))" ) ;
413
+ let descriptor = policy. compile_tr ( Some ( unspendable_key. clone ( ) ) ) ;
414
+
415
+ assert_eq ! (
416
+ descriptor. unwrap_err( ) . to_string( ) ,
417
+ "Policy contains duplicate keys"
418
+ ) ;
419
+ }
409
420
}
410
421
}
You can’t perform that action at this time.
0 commit comments