File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " miniscript"
3
- version = " 5.0.0 "
3
+ version = " 5.0.1 "
4
4
authors = [" Andrew Poelstra <apoelstra@wpsoftware.net>, Sanket Kanjalkar <sanket1729@gmail.com>" ]
5
5
repository = " https://github.com/apoelstra/miniscript"
6
6
description = " Miniscript: a subset of Bitcoin Script designed for analysis"
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ impl<Pk: MiniscriptKey + ToPublicKey> Satisfier<Pk> for Older {
120
120
121
121
let mask = SEQUENCE_LOCKTIME_MASK | SEQUENCE_LOCKTIME_TYPE_FLAG ;
122
122
let masked_n = n & mask;
123
- let masked_seq = n & self . 0 ;
123
+ let masked_seq = self . 0 & mask ;
124
124
if masked_n < SEQUENCE_LOCKTIME_TYPE_FLAG && masked_seq >= SEQUENCE_LOCKTIME_TYPE_FLAG {
125
125
false
126
126
} else {
You can’t perform that action at this time.
0 commit comments