aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2011-07-12 20:22:38 -0700
committerJeff Garzik <jgarzik@exmulti.com>2011-07-12 20:22:38 -0700
commit4ea952d5c03e18b9ddd0e97f4434cd9092358dab (patch)
treef0f627dc9188eb11b02bed39ca66287ccd9634af /src/wallet.cpp
parent0ca8324f599eda83cae5f6a99ed9d1d40ec3ff2d (diff)
parentd0538a81bb7836865086d72ccc6a4d263fa49aef (diff)
downloadbitcoin-4ea952d5c03e18b9ddd0e97f4434cd9092358dab.tar.xz
Merge pull request #399 from muggenhor/warning-fixes
Warning fixes
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index a211fde468..f4df5ecf64 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -722,8 +722,6 @@ void CWallet::ResendWalletTransactions()
int64 CWallet::GetBalance() const
{
- int64 nStart = GetTimeMillis();
-
int64 nTotal = 0;
CRITICAL_BLOCK(cs_mapWallet)
{
@@ -736,7 +734,6 @@ int64 CWallet::GetBalance() const
}
}
- //printf("GetBalance() %"PRI64d"ms\n", GetTimeMillis() - nStart);
return nTotal;
}