From 7e98123ccdebcc483421aa44766462ef856a08f1 Mon Sep 17 00:00:00 2001 From: Wei Lu <luwei.here@gmail.com> Date: Wed, 18 Jun 2014 14:29:02 +0800 Subject: [PATCH] wallet.getUnspentOutputs includes the pending field --- src/wallet.js | 3 ++- test/wallet.js | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/src/wallet.js b/src/wallet.js index a77cd02..48b9d8d 100644 --- a/src/wallet.js +++ b/src/wallet.js @@ -90,7 +90,8 @@ function Wallet(seed, network) { hash: hashAndIndex[0], outputIndex: parseInt(hashAndIndex[1]), address: output.address, - value: output.value + value: output.value, + pending: output.pending } } diff --git a/test/wallet.js b/test/wallet.js index eec0ac0..356c590 100644 --- a/test/wallet.js +++ b/test/wallet.js @@ -175,7 +175,8 @@ describe('Wallet', function() { "hash":"6a4062273ac4f9ea4ffca52d9fd102b08f6c32faa0a4d1318e3a7b2e437bb9c7", "outputIndex": 0, "address" : "1AZpKpcfCzKDUeTFBQUL4MokQai3m3HMXv", - "value": 20000 + "value": 20000, + "pending": true } expectedOutputKey = expectedUtxo.hash + ":" + expectedUtxo.outputIndex }) @@ -185,7 +186,8 @@ describe('Wallet', function() { wallet.outputs[key] = { receive: key, address: utxo.address, - value: utxo.value + value: utxo.value, + pending: utxo.pending } }