diff options
author | Giel van Schijndel <me@mortis.eu> | 2011-06-24 22:00:59 +0200 |
---|---|---|
committer | Giel van Schijndel <me@mortis.eu> | 2011-07-13 05:10:15 +0200 |
commit | 858cebed7dee2e9801e754a9969844b7969254ee (patch) | |
tree | ad12ee913c13750c880a6bd04508cc25be8f8545 /src/wallet.cpp | |
parent | 225f222c9fba7a831e2e5f80ccbba34ed2bca532 (diff) |
fix warning: unused variable 'X' [-Wunused-variable]
Remove several unused variables.
Signed-off-by: Giel van Schijndel <me@mortis.eu>
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 3 |
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; } |