diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-24 08:19:27 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2012-08-24 08:52:12 +0200 |
commit | f09e8fcd33f7f1b1f4e20f2148bbf919b97db0c4 (patch) | |
tree | 7064f8ef83a5496101e9e6034fcaad5edd9e32c1 /src/wallet.cpp | |
parent | 0050cf21ce2a3a3c032817e661f813ccaf25f430 (diff) |
Qt: show mined transactions at depth 1
- before, we used to show them in GUI when depth >= 2, which could lead to
confusion of users, as the RPC behaviour already showed the Tx
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp index 5ca501b1af..9b472cd78f 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -953,7 +953,7 @@ int64 CWallet::GetImmatureBalance() const for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it) { const CWalletTx& pcoin = (*it).second; - if (pcoin.IsCoinBase() && pcoin.GetBlocksToMaturity() > 0 && pcoin.GetDepthInMainChain() >= 2) + if (pcoin.IsCoinBase() && pcoin.GetBlocksToMaturity() > 0 && pcoin.IsInMainChain()) nTotal += GetCredit(pcoin); } } |