Skip to content

Commit 5fbedba

Browse files
committed
Merge #735: [backport] Several small fixes for 12.x
9cedc49 bump version to 12.3.0 (Andrew Poelstra) 9420012 fix: zero sequence check on relative time (Chris Hyunhum Cho) 5147c6f descriptor: don't accept strings of the form tr(<key>,) (Andrew Poelstra) 6401c22 miniscript: fix string serialization of and_n (Andrew Poelstra) Pull request description: We are incorrectly serializing and_n as "and_b", and incorrectly parsing `tr(<key>,)`. In master the `and_b` thing is fixed by #722 which rewrites the Display impl completely and the `tr(<key>,)` thing will be fixed as part of a coming series of PRs to clean up expression parsing. Also includes #740 since it showed up in time. ACKs for top commit: sanket1729: ACK 9cedc49 Tree-SHA512: edd45781db5b712e6013a396f6840ce74a6b32861b58a4df25e457c46c845c225dcde95f6c33db7fa314a1c4d2857515f40608d9c66e9432994cadf3d2f10e78
2 parents 8f54b5e + 9cedc49 commit 5fbedba

File tree

7 files changed

+17
-8
lines changed

7 files changed

+17
-8
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# # 12.3.0 - August 31, 2024
2+
3+
- Fix incorrect string serialization of `and_b` [#735](https://github.com/rust-bitcoin/rust-miniscript/pull/735)
4+
15
# # 12.2.0 - July 20, 2024
26

37
- Fix panics while decoding large miniscripts from script [#712](https://github.com/rust-bitcoin/rust-miniscript/pull/712)

Cargo-minimal.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ dependencies = [
316316

317317
[[package]]
318318
name = "miniscript"
319-
version = "12.2.0"
319+
version = "12.3.0"
320320
dependencies = [
321321
"bech32",
322322
"bitcoin",

Cargo-recent.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ dependencies = [
294294

295295
[[package]]
296296
name = "miniscript"
297-
version = "12.2.0"
297+
version = "12.3.0"
298298
dependencies = [
299299
"bech32",
300300
"bitcoin",

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "miniscript"
3-
version = "12.2.0"
3+
version = "12.3.0"
44
authors = ["Andrew Poelstra <[email protected]>, Sanket Kanjalkar <[email protected]>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/rust-bitcoin/rust-miniscript/"

src/descriptor/tr.rs

+8-3
Original file line numberDiff line numberDiff line change
@@ -587,9 +587,6 @@ fn parse_tr_tree(s: &str) -> Result<expression::Tree, Error> {
587587
return Err(Error::Unexpected("invalid taproot internal key".to_string()));
588588
}
589589
let internal_key = expression::Tree { name: key.name, args: vec![] };
590-
if script.is_empty() {
591-
return Ok(expression::Tree { name: "tr", args: vec![internal_key] });
592-
}
593590
let (tree, rest) = expression::Tree::from_slice_delim(script, 1, '{')?;
594591
if rest.is_empty() {
595592
Ok(expression::Tree { name: "tr", args: vec![internal_key, tree] })
@@ -770,6 +767,14 @@ mod tests {
770767
desc.replace(&[' ', '\n'][..], "")
771768
}
772769

770+
#[test]
771+
fn regression_736() {
772+
crate::Descriptor::<crate::DescriptorPublicKey>::from_str(
773+
"tr(0000000000000000000000000000000000000000000000000000000000000002,)",
774+
)
775+
.unwrap_err();
776+
}
777+
773778
#[test]
774779
fn for_each() {
775780
let desc = descriptor();

src/miniscript/astelem.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ impl<Pk: MiniscriptKey, Ctx: ScriptContext> Terminal<Pk, Ctx> {
6262
Terminal::AndB(ref l, ref r) => fmt_2(f, "and_b(", l, r, is_debug),
6363
Terminal::AndOr(ref a, ref b, ref c) => {
6464
if c.node == Terminal::False {
65-
fmt_2(f, "and_b(", a, b, is_debug)
65+
fmt_2(f, "and_n(", a, b, is_debug)
6666
} else {
6767
f.write_str("andor(")?;
6868
conditional_fmt(f, a, is_debug)?;

src/primitives/relative_locktime.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl RelLockTime {
6565
impl convert::TryFrom<Sequence> for RelLockTime {
6666
type Error = RelLockTimeError;
6767
fn try_from(seq: Sequence) -> Result<Self, RelLockTimeError> {
68-
if seq.is_relative_lock_time() {
68+
if seq.is_relative_lock_time() && seq != Sequence::ZERO {
6969
Ok(RelLockTime(seq))
7070
} else {
7171
Err(RelLockTimeError { value: seq.to_consensus_u32() })

0 commit comments

Comments
 (0)