aboutsummaryrefslogtreecommitdiff
path: root/src/db.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2011-11-10 21:29:23 +0100
committerLuke Dashjr <luke-jr+git@utopios.org>2011-11-15 10:03:31 -0500
commit00eae584a26295dbf7b1aebf99c1b8a4c9a86c37 (patch)
treef6a6b4b3386d1aa64d8fb497c6eaaabf5a5d97fc /src/db.h
parentef4280e08b217bf2512bb1878e1dd2a926e557c9 (diff)
downloadbitcoin-00eae584a26295dbf7b1aebf99c1b8a4c9a86c37.tar.xz
Resilvering
Diffstat (limited to 'src/db.h')
-rw-r--r--src/db.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/db.h b/src/db.h
index 73ea1902cc..75748ace01 100644
--- a/src/db.h
+++ b/src/db.h
@@ -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