Skip to content

Commit 45b15a3

Browse files
chore: bump miniscript dependency from 12.2.0 to 12.3.0
Issue: BTC-1829
1 parent 197f927 commit 45b15a3

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

packages/wasm-miniscript/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/wasm-miniscript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ crate-type = ["cdylib"]
99
[dependencies]
1010
wasm-bindgen = "0.2"
1111
js-sys = "0.3"
12-
miniscript = { version = "12.2.0" }
12+
miniscript = { version = "12.3.0" }

packages/wasm-miniscript/test/test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ describe("Descriptor fixtures", function () {
4545
if (fixture.checksumRequired === false) {
4646
descriptorString = removeChecksum(descriptorString);
4747
}
48-
let expected = fixture.descriptor;
49-
if (i === 56 || i === 57) {
50-
// for reasons I do not really understand, the `a:and_n` gets converted into `a:and_b` for these
51-
expected = expected.replace("and_n", "and_b");
52-
}
48+
const expected = fixture.descriptor;
5349
assert.strictEqual(descriptorString, expected);
5450

5551
assert.doesNotThrow(() =>

0 commit comments

Comments
 (0)