wallet.createTx ignores pending utxo
This commit is contained in:
parent
660c95483d
commit
e064e9d29d
2 changed files with 22 additions and 2 deletions
src
|
@ -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){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue