Skip to content

Commit

Permalink
Remove script from txInputs
Browse files Browse the repository at this point in the history
  • Loading branch information
lukechilds committed Apr 27, 2020
1 parent 2d4a3b9 commit fde6025
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/psbt.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}));
}
Expand Down
1 change: 0 additions & 1 deletion ts_src/psbt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}));
}
Expand Down

0 comments on commit fde6025

Please sign in to comment.