aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kaufmann <[email protected]>2015-04-08 14:31:53 +0200
committerPhilip Kaufmann <[email protected]>2015-04-08 14:31:53 +0200
commitf702d1c66df1534d3fad881f4f72160818a8305c (patch)
tree5165f33ae10b075d23f66b47d0d43e70561c75b2
parentMerge pull request #5951 (diff)
downloaddiscoin-f702d1c66df1534d3fad881f4f72160818a8305c.tar.xz
discoin-f702d1c66df1534d3fad881f4f72160818a8305c.zip
move ThreadFlushWalletDB declaration to walletdb.h
-rw-r--r--src/wallet/db.h3
-rw-r--r--src/wallet/walletdb.h1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/wallet/db.h b/src/wallet/db.h
index 0c2c139d8..790ae5041 100644
--- a/src/wallet/db.h
+++ b/src/wallet/db.h
@@ -25,9 +25,6 @@ class COutPoint;
extern unsigned int nWalletDBUpdated;
-void ThreadFlushWalletDB(const std::string& strWalletFile);
-
-
class CDBEnv
{
private:
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h
index a1c38b9d3..e5f64ffaa 100644
--- a/src/wallet/walletdb.h
+++ b/src/wallet/walletdb.h
@@ -138,5 +138,6 @@ private:
};
bool BackupWallet(const CWallet& wallet, const std::string& strDest);
+void ThreadFlushWalletDB(const std::string& strFile);
#endif // BITCOIN_WALLETDB_H