diff options
| author | Gregory Maxwell <[email protected]> | 2014-03-28 09:58:40 -0700 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2014-03-28 09:58:40 -0700 |
| commit | a60ab0ba89289433563c4c0993904acbca8c99ff (patch) | |
| tree | 133b97141d6fc862604f0f2a59a5c7fd4856c5f8 | |
| parent | Add a "relayfee" field to getinfo. (diff) | |
| download | discoin-a60ab0ba89289433563c4c0993904acbca8c99ff.tar.xz discoin-a60ab0ba89289433563c4c0993904acbca8c99ff.zip | |
Make GetAvailableCredit run GetHash() only once per transaction.
This makes the first getbalance/getinfo 63x faster on my wallet.
| -rw-r--r-- | src/wallet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet.h b/src/wallet.h index e2e89fffe..487c258a2 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -620,9 +620,10 @@ public: return nAvailableCreditCached; int64_t nCredit = 0; + uint256 hashTx = GetHash(); for (unsigned int i = 0; i < vout.size(); i++) { - if (!pwallet->IsSpent(GetHash(), i)) + if (!pwallet->IsSpent(hashTx, i)) { const CTxOut &txout = vout[i]; nCredit += pwallet->GetCredit(txout); |