diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 206a001b5..0f75bb065 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1933,7 +1933,7 @@ CAmount CWalletTx::GetCredit(const isminefilter& filter) const CAmount CWalletTx::GetImmatureCredit(bool fUseCache) const { - if ((IsCoinBase() || IsCoinStake()) && GetBlocksToMaturity() > 0 && IsInMainChain()) + if (IsCoinBase() && GetBlocksToMaturity() > 0 && IsInMainChain()) { if (fUseCache && fImmatureCreditCached) return nImmatureCreditCached;