@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.
- package/browser/_version.d.ts +1 -1
- package/browser/index.js +1 -1
- package/build/_version.d.ts +1 -1
- package/build/_version.js +1 -1
- package/build/transaction/shared/TweakedTransaction.js +0 -1
- package/package.json +1 -1
- package/src/_version.ts +1 -1
- package/src/transaction/TransactionFactory.ts +4 -1
- package/src/transaction/shared/TweakedTransaction.ts +0 -2
package/build/_version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.6.
|
|
1
|
+
export declare const version = "1.6.16";
|
package/build/_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.6.
|
|
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
package/src/_version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '1.6.
|
|
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 {
|
|
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
|
}
|