Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Polybius93 committed Jul 5, 2024
1 parent 16533f2 commit d37a1f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "dlc-btc-lib",
"version": "1.0.15",
"version": "1.0.16",
"description": "This library provides a comprehensive set of interfaces and functions for minting dlcBTC tokens on supported blockchains.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
3 changes: 1 addition & 2 deletions src/dlc-handlers/ledger-dlc-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,6 @@ export class LedgerDLCHandler {
fundingWalletPolicy,
null
);
console.log('userSignatures', userSignatures);
switch (this.fundingPaymentType) {
case 'wpkh':
addNativeSegwitSignaturesToPSBT(psbt, userSignatures);
Expand All @@ -531,7 +530,7 @@ export class LedgerDLCHandler {
throw new Error('Invalid Funding Payment Type');
}
const userInputIndices = userSignatures.map(signature => signature[0]);
console.log('userInputIndices', userInputIndices);

const depositTransaction = Transaction.fromPSBT(psbt.toBuffer());
userInputIndices.forEach(index => {
depositTransaction.finalizeIdx(index);
Expand Down

0 comments on commit d37a1f6

Please sign in to comment.