| 205 | } |
| 206 | |
| 207 | CAmountMap CachedTxGetImmatureWatchOnlyCredit(const CWallet& wallet, const CWalletTx& wtx, const bool fUseCache) |
| 208 | { |
| 209 | if (wallet.IsTxImmatureCoinBase(wtx) && wallet.IsTxInMainChain(wtx)) { |
| 210 | return GetCachableAmount(wallet, wtx, CWalletTx::IMMATURE_CREDIT, ISMINE_WATCH_ONLY, !fUseCache); |
| 211 | } |
| 212 | |
| 213 | return CAmountMap(); |
| 214 | } |
| 215 | |
| 216 | CAmountMap CachedTxGetAvailableCredit(const CWallet& wallet, const CWalletTx& wtx, bool fUseCache, const isminefilter& filter) |
| 217 | { |
no test coverage detected