diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2011-11-10 21:29:23 +0100 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2011-11-15 10:03:31 -0500 |
commit | 00eae584a26295dbf7b1aebf99c1b8a4c9a86c37 (patch) | |
tree | f6a6b4b3386d1aa64d8fb497c6eaaabf5a5d97fc /src/db.h | |
parent | ef4280e08b217bf2512bb1878e1dd2a926e557c9 (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 |