| 196 | } |
| 197 | |
| 198 | CAmountMap CachedTxGetImmatureCredit(const CWallet& wallet, const CWalletTx& wtx, bool fUseCache) |
| 199 | { |
| 200 | if (wallet.IsTxImmatureCoinBase(wtx) && wallet.IsTxInMainChain(wtx)) { |
| 201 | return GetCachableAmount(wallet, wtx, CWalletTx::IMMATURE_CREDIT, ISMINE_SPENDABLE, !fUseCache); |
| 202 | } |
| 203 | |
| 204 | return CAmountMap(); |
| 205 | } |
| 206 | |
| 207 | CAmountMap CachedTxGetImmatureWatchOnlyCredit(const CWallet& wallet, const CWalletTx& wtx, const bool fUseCache) |
| 208 | { |