aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/db.h
diff options
context:
space:
mode:
authorAndrew Chow <achow101-github@achow101.com>2020-05-15 18:48:33 -0400
committerAndrew Chow <achow101-github@achow101.com>2020-05-25 12:59:29 -0400
commit07250b8dcebe2b97ed0fd900ad35cba4091b8ecf (patch)
tree29ce903b15ace19b83fd55bfd3d8d8b9d33cc75c /src/wallet/db.h
parent8ebcbc85c652665b78dcfd2ad55fa67cafd42c73 (diff)
downloadbitcoin-07250b8dcebe2b97ed0fd900ad35cba4091b8ecf.tar.xz
walletdb: remove fAggressive from Salvage
The only call to Salvage set fAggressive = true so remove that parameter and always use DB_AGGRESSIVE
Diffstat (limited to 'src/wallet/db.h')
-rw-r--r--src/wallet/db.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/db.h b/src/wallet/db.h
index 1151124da3..4543c8c7e0 100644
--- a/src/wallet/db.h
+++ b/src/wallet/db.h
@@ -75,7 +75,7 @@ public:
* for huge databases.
*/
typedef std::pair<std::vector<unsigned char>, std::vector<unsigned char> > KeyValPair;
- bool Salvage(const std::string& strFile, bool fAggressive, std::vector<KeyValPair>& vResult);
+ bool Salvage(const std::string& strFile, std::vector<KeyValPair>& vResult);
bool Open(bool retry);
void Close();