Skip to content

Commit 795b554

Browse files
committed
fix typo
1 parent 956ef55 commit 795b554

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/taproot.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ describe('bitcoinjs-lib (transaction with taproot)', () => {
451451
} catch (err) {
452452
if ((err as any).message !== 'non-BIP68-final')
453453
throw new Error(
454-
'Expected OP_CHECKSEQUENCEVERIFY validation to fail. But it faild with: ' +
454+
'Expected OP_CHECKSEQUENCEVERIFY validation to fail. But it failed with: ' +
455455
err,
456456
);
457457
}

test/psbt.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ describe(`Psbt`, () => {
208208

209209
psbts[0].combine(psbts[1]);
210210

211-
// Produces a different Base64 string due to implemetation specific key-value ordering.
211+
// Produces a different Base64 string due to implementation specific key-value ordering.
212212
// That means this test will fail:
213213
// assert.strictEqual(psbts[0].toBase64(), f.result)
214214
// However, if we compare the actual PSBT properties we can see they are logically identical:

0 commit comments

Comments
 (0)