diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-10-13 13:56:54 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-10-13 13:57:07 +0200 |
| commit | d7e195048342afae9168377cebfc22ab000728a5 (patch) | |
| tree | ee5b07604ef073ef35d8aa13598fb7d6a4877bc4 /src/qt/walletmodel.cpp | |
| parent | Merge pull request #5073 (diff) | |
| parent | [Wallet] Watch-only fixes (diff) | |
| download | discoin-d7e195048342afae9168377cebfc22ab000728a5.tar.xz discoin-d7e195048342afae9168377cebfc22ab000728a5.zip | |
Merge pull request #4937
ccca27a [Wallet] Watch-only fixes (Cozz Lovan)
Diffstat (limited to 'src/qt/walletmodel.cpp')
| -rw-r--r-- | src/qt/walletmodel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/walletmodel.cpp b/src/qt/walletmodel.cpp index b8701a23a..b4733d369 100644 --- a/src/qt/walletmodel.cpp +++ b/src/qt/walletmodel.cpp @@ -605,7 +605,8 @@ void WalletModel::listCoins(std::map<QString, std::vector<COutput> >& mapCoins) int nDepth = wallet->mapWallet[outpoint.hash].GetDepthInMainChain(); if (nDepth < 0) continue; COutput out(&wallet->mapWallet[outpoint.hash], outpoint.n, nDepth, true); - vCoins.push_back(out); + if (outpoint.n < out.tx->vout.size() && wallet->IsMine(out.tx->vout[outpoint.n]) == ISMINE_SPENDABLE) + vCoins.push_back(out); } BOOST_FOREACH(const COutput& out, vCoins) |