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-update7^0 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=556ce5b71bb1cb6bf429e03b0288ac873b5ee22d Fix immature balance caching issues --- diff --git a/src/wallet.h b/src/wallet.h index 26c49ea..9a41935 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -461,6 +461,8 @@ public: fWatchCreditCached = false; fAvailableCreditCached = false; fAvailableWatchCreditCached = false; + fImmatureCreditCached = false; + fImmatureWatchCreditCached = false; fChangeCached = false; nDebitCached = 0; nWatchDebitCached = 0; @@ -468,6 +470,8 @@ public: nWatchCreditCached = 0; nAvailableCreditCached = 0; nAvailableWatchCreditCached = 0; + nImmatureCreditCached = 0; + nImmatureWatchCreditCached = 0; nChangeCached = 0; nOrderPos = -1; }