Update Transaction.js

Global leak fix
This commit is contained in:
Aaron Caswell 2014-08-19 23:30:08 -07:00
parent 095699a072
commit e6190f9e9b
1 changed files with 2 additions and 2 deletions

View File

@ -543,7 +543,7 @@ Transaction.prototype.parse = function(parser) {
var txinCount = parser.varInt();
this.ins = [];
for (j = 0; j < txinCount; j++) {
for (i = 0; i < txinCount; i++) {
var txin = new TransactionIn();
txin.o = parser.buffer(36); // outpoint
sLen = parser.varInt(); // script_len
@ -555,7 +555,7 @@ Transaction.prototype.parse = function(parser) {
var txoutCount = parser.varInt();
this.outs = [];
for (j = 0; j < txoutCount; j++) {
for (i = 0; i < txoutCount; i++) {
var txout = new TransactionOut();
txout.v = parser.buffer(8); // value
sLen = parser.varInt(); // script_len