From: CryptoManiac Date: Sat, 2 Aug 2014 18:34:04 +0000 (+0400) Subject: Fix immature balance caching issues X-Git-Tag: v0.4.4.6-nvc-update8~1^2~1^2~4 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=02d595020899b8fe9cfd12728ff17299bce12903;hp=16646cd1afb50399fbe867f1e9590e58c6f1a792;p=novacoin.git Fix immature balance caching issues --- diff --git a/src/wallet.h b/src/wallet.h index 96fe239..f9a2983 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -460,6 +460,8 @@ public: fWatchCreditCached = false; fAvailableCreditCached = false; fAvailableWatchCreditCached = false; + fImmatureCreditCached = false; + fImmatureWatchCreditCached = false; fChangeCached = false; nDebitCached = 0; nWatchDebitCached = 0; @@ -467,6 +469,8 @@ public: nWatchCreditCached = 0; nAvailableCreditCached = 0; nAvailableWatchCreditCached = 0; + nImmatureCreditCached = 0; + nImmatureWatchCreditCached = 0; nChangeCached = 0; nOrderPos = -1; }