diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-04-24 14:51:15 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-04-24 14:57:43 +0200 |
| commit | 585b5dba745a25caf1cc20fdb751ff7cb3762bf0 (patch) | |
| tree | b075cb9ec48d9a3c201d6092a906faac9dbfe1c5 /src/wallet/rpcwallet.cpp | |
| parent | Merge pull request #5863 (diff) | |
| parent | add rpc test for listunspents support for zero value txouts (diff) | |
| download | discoin-585b5dba745a25caf1cc20fdb751ff7cb3762bf0.tar.xz discoin-585b5dba745a25caf1cc20fdb751ff7cb3762bf0.zip | |
Merge pull request #6036
f89b092 add rpc test for listunspents support for zero value txouts (Jonas Schnelli)
219953c Show zero value txouts in listunspent. (Gregory Maxwell)
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index e03cd5b84..c31c09d92 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -2301,7 +2301,7 @@ Value listunspent(const Array& params, bool fHelp) vector<COutput> vecOutputs; assert(pwalletMain != NULL); LOCK2(cs_main, pwalletMain->cs_wallet); - pwalletMain->AvailableCoins(vecOutputs, false); + pwalletMain->AvailableCoins(vecOutputs, false, NULL, true); BOOST_FOREACH(const COutput& out, vecOutputs) { if (out.nDepth < nMinDepth || out.nDepth > nMaxDepth) continue; |