Skip to content

Commit adde3ea

Browse files
authored
Merge pull request #203 from darosior/psbt_satisfier_fixes
PSBT satisfier fix
2 parents 1b75eb5 + 261d4ef commit adde3ea

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "miniscript"
3-
version = "4.0.1"
3+
version = "4.0.2"
44
authors = ["Andrew Poelstra <[email protected]>, Sanket Kanjalkar <[email protected]>"]
55
repository = "https://github.com/apoelstra/miniscript"
66
description = "Miniscript: a subset of Bitcoin Script designed for analysis"

src/psbt/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ impl<'psbt, ToPkCtx: Copy, Pk: MiniscriptKey + ToPublicKey<ToPkCtx>> Satisfier<T
282282
// transaction version and sequence check
283283
false
284284
} else {
285-
<Satisfier<ToPkCtx, Pk>>::check_after(&Older(seq), n)
285+
<Satisfier<ToPkCtx, Pk>>::check_older(&Older(seq), n)
286286
}
287287
}
288288
}

0 commit comments

Comments
 (0)