diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2011-11-10 21:29:23 +0100 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2011-11-14 09:59:22 -0500 |
commit | 9e9869d0fe9c5cb38273a557e28b1922356d0e11 (patch) | |
tree | 243d112805483871364e320f2bffc300f95f8829 /src/db.h | |
parent | e6a729d2d82d9bc092ace2836f7492106003cbf0 (diff) |
Resilvering
Diffstat (limited to 'src/db.h')
-rw-r--r-- | src/db.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -32,7 +32,7 @@ extern DbEnv dbenv; extern void DBFlush(bool fShutdown); void ThreadFlushWalletDB(void* parg); bool BackupWallet(const CWallet& wallet, const std::string& strDest); - +extern bool Resilver(const std::string& strFile); @@ -257,6 +257,8 @@ public: { return Write(std::string("version"), nVersion); } + + friend bool Resilver(const std::string&); }; @@ -349,6 +351,7 @@ enum DBErrors DB_CORRUPT, DB_TOO_NEW, DB_LOAD_FAIL, + DB_NEED_RESILVER }; class CWalletDB : public CDB |