diff --git a/src/psbt.js b/src/psbt.js index 7b2928e..134be87 100644 --- a/src/psbt.js +++ b/src/psbt.js @@ -113,7 +113,6 @@ class Psbt { return this.__CACHE.__TX.ins.map(input => ({ hash: bufferutils_1.cloneBuffer(input.hash), index: input.index, - script: bufferutils_1.cloneBuffer(input.script), sequence: input.sequence, })); } diff --git a/ts_src/psbt.ts b/ts_src/psbt.ts index da19497..89491b9 100644 --- a/ts_src/psbt.ts +++ b/ts_src/psbt.ts @@ -150,7 +150,6 @@ export class Psbt { return this.__CACHE.__TX.ins.map(input => ({ hash: cloneBuffer(input.hash), index: input.index, - script: cloneBuffer(input.script), sequence: input.sequence, })); }