diff options
| author | practicalswift <[email protected]> | 2017-06-03 23:54:24 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-06-03 23:54:24 +0200 |
| commit | a8c09affcea53f1c65a1cb682d059127c15eae2d (patch) | |
| tree | b976f15808a4fb1827db201774367cb32ad3dd25 /src/wallet/db.cpp | |
| parent | Merge #10447: Make bitcoind invalid argument error message specific (diff) | |
| download | discoin-a8c09affcea53f1c65a1cb682d059127c15eae2d.tar.xz discoin-a8c09affcea53f1c65a1cb682d059127c15eae2d.zip | |
Remove unused variables
Diffstat (limited to 'src/wallet/db.cpp')
| -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 25f6bdd9d..89f204bc3 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; } |