Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/integration/taproot.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ describe('bitcoinjs-lib (transaction with taproot)', () => {
} catch (err) {
if ((err as any).message !== 'non-BIP68-final')
throw new Error(
'Expected OP_CHECKSEQUENCEVERIFY validation to fail. But it faild with: ' +
'Expected OP_CHECKSEQUENCEVERIFY validation to fail. But it failed with: ' +
err,
);
}
Expand Down
2 changes: 1 addition & 1 deletion test/psbt.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ describe(`Psbt`, () => {

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

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