diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2011-11-10 21:12:46 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-11-15 09:30:16 -0500 |
commit | d764d9161e548c7fbf835b70eb9d5c75caa28ff5 (patch) | |
tree | d94d3cf42bee7df401ac44a9c6c0181981a416b0 /src/db.h | |
parent | 9e9869d0fe9c5cb38273a557e28b1922356d0e11 (diff) |
Obsolete keypool and make sure database removes log files on shutdown.
Diffstat (limited to 'src/db.h')
-rw-r--r-- | src/db.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -29,10 +29,9 @@ extern unsigned int nWalletDBUpdated; extern DbEnv dbenv; -extern void DBFlush(bool fShutdown); +extern void DBFlush(bool fShutdown, bool fRemoveLogFiles); void ThreadFlushWalletDB(void* parg); bool BackupWallet(const CWallet& wallet, const std::string& strDest); -extern bool Resilver(const std::string& strFile); @@ -258,7 +257,7 @@ public: return Write(std::string("version"), nVersion); } - friend bool Resilver(const std::string&); + bool static Rewrite(const std::string& strFile, const char* pszSkip = NULL); }; @@ -351,7 +350,7 @@ enum DBErrors DB_CORRUPT, DB_TOO_NEW, DB_LOAD_FAIL, - DB_NEED_RESILVER + DB_NEED_REWRITE }; class CWalletDB : public CDB |