| 1923 | } |
| 1924 | |
| 1925 | CAmount CWalletTx::GetImmatureCredit(bool fUseCache) const |
| 1926 | { |
| 1927 | if (IsCoinBase() && GetBlocksToMaturity() > 0 && IsInMainChain()) |
| 1928 | { |
| 1929 | if (fUseCache && fImmatureCreditCached) |
| 1930 | return nImmatureCreditCached; |
| 1931 | nImmatureCreditCached = pwallet->GetCredit(*tx, ISMINE_SPENDABLE); |
| 1932 | fImmatureCreditCached = true; |
| 1933 | return nImmatureCreditCached; |
| 1934 | } |
| 1935 | |
| 1936 | return 0; |
| 1937 | } |
| 1938 | |
| 1939 | CAmount CWalletTx::GetAvailableCredit(bool fUseCache, const isminefilter& filter) const |
| 1940 | { |