Skip to content

Commit

Permalink
Fix typo in transaction spec (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
s373nZ authored Dec 11, 2024
1 parent d168341 commit 5908f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/transaction.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe.skip('liquidjs-lib (transactions with psbt)', () => {
'hex',
),
];
const bliningPubkeys = [''].map(
const blindingPubkeys = [''].map(
() => ECPair.makeRandom({ network: regtest }).publicKey,
);

Expand Down Expand Up @@ -154,7 +154,7 @@ describe.skip('liquidjs-lib (transactions with psbt)', () => {
psbt.blindOutputs(
Psbt.ECCKeysGenerator(ecc),
blindingPrivkeys,
bliningPubkeys,
blindingPubkeys,
);
psbt.signInput(0, bob);
psbt.validateSignaturesOfInput(0, Psbt.ECDSASigValidator(ecc));
Expand Down

0 comments on commit 5908f9d

Please sign in to comment.