We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
best_tap_spend
1 parent 5de4df8 commit 36349baCopy full SHA for 36349ba
src/descriptor/tr/mod.rs
@@ -488,12 +488,12 @@ where
488
let mut min_wit_len = None;
489
for leaf in spend_info.leaves() {
490
let mut satisfaction = if allow_mall {
491
- match leaf.miniscript().build_template(provider) {
+ match leaf.miniscript().build_template_mall(provider) {
492
s @ Satisfaction { stack: Witness::Stack(_), .. } => s,
493
_ => continue, // No witness for this script in tr descriptor, look for next one
494
}
495
} else {
496
- match leaf.miniscript().build_template_mall(provider) {
+ match leaf.miniscript().build_template(provider) {
497
498
499
0 commit comments