aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-09-20 00:42:31 -0700
committerWladimir J. van der Laan <laanwj@gmail.com>2012-09-20 00:42:31 -0700
commitbfc24bd4cee1c1da944dfd1f236b07e9194f493c (patch)
tree75b26cdb2bd638830f0e76fbde7407945bac22a9 /src/wallet.cpp
parent6cbae37667f504d9ecd6173e1eff817d2b7aaf0c (diff)
parentf09e8fcd33f7f1b1f4e20f2148bbf919b97db0c4 (diff)
downloadbitcoin-bfc24bd4cee1c1da944dfd1f236b07e9194f493c.tar.xz
Merge pull request #1717 from Diapolo/Qt_change_TX_display
Qt: show mined transactions at depth 1
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 880f7aa8bd..a10f187309 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -960,7 +960,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);
}
}