Skip to content

Commit

Permalink
Fix wrongly creating a transaction, spotted by dcousens.
Browse files Browse the repository at this point in the history
  • Loading branch information
caedesvvv committed Oct 15, 2014
1 parent bff9d62 commit 0777319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/dwutil/multisig.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ MultisigFund.prototype.detectTasks = function() {
});
}

var tx = new Bitcoin.Transaction(task.tx);
var tx = Bitcoin.Transaction.fromHex(task.tx);
res.push({tx: tx, task: task, canSign: canSign});

}
Expand Down

0 comments on commit 0777319

Please sign in to comment.