@btc-vision/transaction 1.6.15 → 1.6.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- export declare const version = "1.6.15";
1
+ export declare const version = "1.6.16";
package/build/_version.js CHANGED
@@ -1 +1 @@
1
- export const version = '1.6.15';
1
+ export const version = '1.6.16';
@@ -494,7 +494,6 @@ export class TweakedTransaction extends Logger {
494
494
  if (decompiled && this.isCSVScript(decompiled)) {
495
495
  this.csvInputIndices.add(i);
496
496
  const csvBlocks = this.extractCSVBlocks(decompiled);
497
- console.log('csvBlocks', csvBlocks);
498
497
  input.sequence = this.setCSVSequence(csvBlocks, this.sequence);
499
498
  }
500
499
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@btc-vision/transaction",
3
3
  "type": "module",
4
- "version": "1.6.15",
4
+ "version": "1.6.16",
5
5
  "author": "BlobMaster41",
6
6
  "description": "OPNet transaction library allows you to create and sign transactions for the OPNet network.",
7
7
  "engines": {
package/src/_version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '1.6.15';
1
+ export const version = '1.6.16';
@@ -1,7 +1,10 @@
1
1
  import { Transaction, TxOutput } from '@btc-vision/bitcoin';
2
2
  import { currentConsensus } from '../consensus/ConsensusConfig.js';
3
3
  import { UTXO } from '../utxo/interfaces/IUTXO.js';
4
- import { CustomScriptTransaction, ICustomTransactionParameters, } from './builders/CustomScriptTransaction.js';
4
+ import {
5
+ CustomScriptTransaction,
6
+ ICustomTransactionParameters,
7
+ } from './builders/CustomScriptTransaction.js';
5
8
  import { DeploymentTransaction } from './builders/DeploymentTransaction.js';
6
9
  import { FundingTransaction } from './builders/FundingTransaction.js';
7
10
  import { InteractionTransaction } from './builders/InteractionTransaction.js';
@@ -894,8 +894,6 @@ export abstract class TweakedTransaction extends Logger {
894
894
  // Extract CSV value from witness script
895
895
  const csvBlocks = this.extractCSVBlocks(decompiled);
896
896
 
897
- console.log('csvBlocks', csvBlocks);
898
-
899
897
  // Use the setCSVSequence method to properly set the sequence
900
898
  input.sequence = this.setCSVSequence(csvBlocks, this.sequence);
901
899
  }