Skip to content

Commit ea3c523

Browse files
committed
Add test case for compilation of pk()-only policies
Prior to this fix, the test failed with: `Unexpected("Empty Miniscript compilation")`
1 parent 169e489 commit ea3c523

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/policy/concrete.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,14 @@ mod compiler_tests {
11201120
.collect::<Vec<_>>();
11211121
assert_eq!(combinations, expected_comb);
11221122
}
1123+
1124+
#[test]
1125+
fn test_tr_pk_only() {
1126+
let policy: Policy<String> = policy_str!("pk(A)");
1127+
let desc = policy.compile_tr(None).unwrap();
1128+
// pk(A) promoted to the internal key, leaving the script tree empty
1129+
assert_eq!(desc.to_string(), "tr(A)#xyg3grex");
1130+
}
11231131
}
11241132

11251133
#[cfg(test)]

0 commit comments

Comments
 (0)