aboutsummaryrefslogtreecommitdiff
path: root/src/db.cpp
diff options
context:
space:
mode:
authorGiel van Schijndel <[email protected]>2011-06-24 22:00:59 +0200
committerGiel van Schijndel <[email protected]>2011-07-13 05:10:15 +0200
commit858cebed7dee2e9801e754a9969844b7969254ee (patch)
treead12ee913c13750c880a6bd04508cc25be8f8545 /src/db.cpp
parentfix warning: X enumeration values not handled in switch [-Wswitch-enum] (diff)
downloaddiscoin-858cebed7dee2e9801e754a9969844b7969254ee.tar.xz
discoin-858cebed7dee2e9801e754a9969844b7969254ee.zip
fix warning: unused variable 'X' [-Wunused-variable]
Remove several unused variables. Signed-off-by: Giel van Schijndel <[email protected]>
Diffstat (limited to 'src/db.cpp')
-rw-r--r--src/db.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/db.cpp b/src/db.cpp
index 1dea92ead..4df05d68e 100644
--- a/src/db.cpp
+++ b/src/db.cpp
@@ -627,8 +627,6 @@ int64 CWalletDB::GetAccountCreditDebit(const string& strAccount)
void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountingEntry>& entries)
{
- int64 nCreditDebit = 0;
-
bool fAllAccounts = (strAccount == "*");
Dbc* pcursor = GetCursor();