@vbyte/btc-dev 1.1.7 → 1.1.8
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/dist/lib/tx/util.js +0 -2
- package/dist/main.cjs +0 -2
- package/dist/main.cjs.map +1 -1
- package/dist/module.mjs +0 -2
- package/dist/module.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/dist/script.js +1 -1
- package/dist/script.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/tx/util.ts +0 -2
package/dist/lib/tx/util.js
CHANGED
|
@@ -8,9 +8,7 @@ import { parse_tx } from './parse.js';
|
|
|
8
8
|
import { assert_tx_template } from './validate.js';
|
|
9
9
|
import { DEFAULT } from '../../const.js';
|
|
10
10
|
export function transcode_tx(txdata, use_segwit = true) {
|
|
11
|
-
console.log('txdata:', txdata);
|
|
12
11
|
const decoded = decode_tx(txdata);
|
|
13
|
-
console.log('decoded:', decoded);
|
|
14
12
|
return encode_tx(decoded, use_segwit);
|
|
15
13
|
}
|
|
16
14
|
export function get_txid(txdata) {
|
package/dist/main.cjs
CHANGED
|
@@ -10067,9 +10067,7 @@ function serialize_tx(txdata) {
|
|
|
10067
10067
|
}
|
|
10068
10068
|
|
|
10069
10069
|
function transcode_tx(txdata, use_segwit = true) {
|
|
10070
|
-
console.log('txdata:', txdata);
|
|
10071
10070
|
const decoded = decode_tx(txdata);
|
|
10072
|
-
console.log('decoded:', decoded);
|
|
10073
10071
|
return encode_tx(decoded, use_segwit);
|
|
10074
10072
|
}
|
|
10075
10073
|
function get_txid(txdata) {
|