diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-06-03 23:54:24 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-06-03 23:54:24 +0200 |
commit | a8c09affcea53f1c65a1cb682d059127c15eae2d (patch) | |
tree | b976f15808a4fb1827db201774367cb32ad3dd25 /src | |
parent | f259263a7b11c6ff925851985ef0082b0a190a57 (diff) |
Remove unused variables
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/db.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp index 25f6bdd9d9..89f204bc31 100644 --- a/src/wallet/db.cpp +++ b/src/wallet/db.cpp @@ -211,7 +211,6 @@ bool CDB::Recover(const std::string& filename, void *callbackDataIn, bool (*reco { CDataStream ssKey(row.first, SER_DISK, CLIENT_VERSION); CDataStream ssValue(row.second, SER_DISK, CLIENT_VERSION); - std::string strType, strErr; if (!(*recoverKVcallback)(callbackDataIn, ssKey, ssValue)) continue; } |