wallet.createTx ignores pending utxo

This commit is contained in:
Wei Lu 2014-06-12 13:11:28 +08:00
parent 660c95483d
commit e064e9d29d
2 changed files with 22 additions and 2 deletions

View file

@ -103,7 +103,8 @@ function Wallet(seed, network) {
return {
receive: key,
address: o.address,
value: o.value
value: o.value,
pending: o.pending
}
}
@ -211,7 +212,7 @@ function Wallet(seed, network) {
for (var key in me.outputs) {
var output = me.outputs[key]
if (!output.spend) unspent.push(output)
if (!output.spend && !output.pending) unspent.push(output)
}
var sortByValueDesc = unspent.sort(function(o1, o2){