aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-04-08 06:37:58 -0700
committerGavin Andresen <gavinandresen@gmail.com>2013-04-08 06:37:58 -0700
commit1829134afec6058d2d7d713b5b280a2d4605bb2e (patch)
tree548ec9bfed891b2033b0b0acddb0463b48cab80f /src
parent1828133c6278eb485744d842801251d99838fb54 (diff)
parentd28bd8b7ca2d0d9ad5f01e005b49acdd3a9eb917 (diff)
downloadbitcoin-1829134afec6058d2d7d713b5b280a2d4605bb2e.tar.xz
Merge pull request #2272 from gavinandresen/getbalancefix
Fix getbalance discrepency
Diffstat (limited to 'src')
-rw-r--r--src/rpcwallet.cpp4
-rw-r--r--src/wallet.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 526a7b5b32..9a899f9238 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -520,12 +520,12 @@ Value getbalance(const Array& params, bool fHelp)
if (params[0].get_str() == "*") {
// Calculate total balance a different way from GetBalance()
// (GetBalance() sums up all unspent TxOuts)
- // getbalance and getbalance '*' should always return the same number.
+ // getbalance and getbalance '*' 0 should return the same number
int64 nBalance = 0;
for (map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it)
{
const CWalletTx& wtx = (*it).second;
- if (!wtx.IsFinal())
+ if (!wtx.IsConfirmed())
continue;
int64 allFee;
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 5761b008f3..2cc2e60f80 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -910,7 +910,7 @@ int64 CWallet::GetBalance() const
for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
{
const CWalletTx* pcoin = &(*it).second;
- if (pcoin->IsFinal() && pcoin->IsConfirmed())
+ if (pcoin->IsConfirmed())
nTotal += pcoin->GetAvailableCredit();
}
}