From: CryptoManiac Date: Fri, 1 Apr 2016 18:11:18 +0000 (+0300) Subject: Move some implementations of CWallet methods to wallet.cpp. X-Git-Tag: nvc-v0.5.8~10 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=ac391ebae891598076486a0cddab460559035e03 Move some implementations of CWallet methods to wallet.cpp. --- diff --git a/src/wallet.cpp b/src/wallet.cpp index 7b43f95..1d735d3 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -810,6 +810,74 @@ isminetype CWallet::IsMine(const CTxIn &txin) const return MINE_NO; } +// marks certain txout's as spent +// returns true if any update took place +bool CWalletTx::UpdateSpent(const std::vector& vfNewSpent) +{ + bool fReturn = false; + for (unsigned int i = 0; i < vfNewSpent.size(); i++) + { + if (i == vfSpent.size()) + break; + + if (vfNewSpent[i] && !vfSpent[i]) + { + vfSpent[i] = true; + fReturn = true; + fAvailableCreditCached = fAvailableWatchCreditCached = false; + } + } + return fReturn; +} + +// make sure balances are recalculated +void CWalletTx::MarkDirty() +{ + fCreditCached = false; + fAvailableCreditCached = fAvailableWatchCreditCached = false; + fDebitCached = fWatchDebitCached = false; + fChangeCached = false; +} + +void CWalletTx::BindWallet(CWallet *pwalletIn) +{ + pwallet = pwalletIn; + MarkDirty(); +} + +void CWalletTx::MarkSpent(unsigned int nOut) +{ + if (nOut >= vout.size()) + throw std::runtime_error("CWalletTx::MarkSpent() : nOut out of range"); + vfSpent.resize(vout.size()); + if (!vfSpent[nOut]) + { + vfSpent[nOut] = true; + fAvailableCreditCached = fAvailableWatchCreditCached = false; + } +} + +void CWalletTx::MarkUnspent(unsigned int nOut) +{ + if (nOut >= vout.size()) + throw std::runtime_error("CWalletTx::MarkUnspent() : nOut out of range"); + vfSpent.resize(vout.size()); + if (vfSpent[nOut]) + { + vfSpent[nOut] = false; + fAvailableCreditCached = fAvailableWatchCreditCached = false; + } +} + +bool CWalletTx::IsSpent(unsigned int nOut) const +{ + if (nOut >= vout.size()) + throw std::runtime_error("CWalletTx::IsSpent() : nOut out of range"); + if (nOut >= vfSpent.size()) + return false; + return (!!vfSpent[nOut]); +} + int64_t CWallet::GetDebit(const CTxIn &txin, const isminefilter& filter) const { { diff --git a/src/wallet.h b/src/wallet.h index de8da97..2b1774a 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -519,71 +519,14 @@ public: // marks certain txout's as spent // returns true if any update took place - bool UpdateSpent(const std::vector& vfNewSpent) - { - bool fReturn = false; - for (unsigned int i = 0; i < vfNewSpent.size(); i++) - { - if (i == vfSpent.size()) - break; - - if (vfNewSpent[i] && !vfSpent[i]) - { - vfSpent[i] = true; - fReturn = true; - fAvailableCreditCached = fAvailableWatchCreditCached = false; - } - } - return fReturn; - } + bool UpdateSpent(const std::vector& vfNewSpent); // make sure balances are recalculated - void MarkDirty() - { - fCreditCached = false; - fAvailableCreditCached = fAvailableWatchCreditCached = false; - fDebitCached = fWatchDebitCached = false; - fChangeCached = false; - } - - void BindWallet(CWallet *pwalletIn) - { - pwallet = pwalletIn; - MarkDirty(); - } - - void MarkSpent(unsigned int nOut) - { - if (nOut >= vout.size()) - throw std::runtime_error("CWalletTx::MarkSpent() : nOut out of range"); - vfSpent.resize(vout.size()); - if (!vfSpent[nOut]) - { - vfSpent[nOut] = true; - fAvailableCreditCached = fAvailableWatchCreditCached = false; - } - } - - void MarkUnspent(unsigned int nOut) - { - if (nOut >= vout.size()) - throw std::runtime_error("CWalletTx::MarkUnspent() : nOut out of range"); - vfSpent.resize(vout.size()); - if (vfSpent[nOut]) - { - vfSpent[nOut] = false; - fAvailableCreditCached = fAvailableWatchCreditCached = false; - } - } - - bool IsSpent(unsigned int nOut) const - { - if (nOut >= vout.size()) - throw std::runtime_error("CWalletTx::IsSpent() : nOut out of range"); - if (nOut >= vfSpent.size()) - return false; - return (!!vfSpent[nOut]); - } + void MarkDirty(); + void BindWallet(CWallet *pwalletIn); + void MarkSpent(unsigned int nOut); + void MarkUnspent(unsigned int nOut); + bool IsSpent(unsigned int nOut) const; int64_t GetDebit(const isminefilter& filter) const; int64_t GetCredit(const isminefilter& filter) const;