From f702d1c66df1534d3fad881f4f72160818a8305c Mon Sep 17 00:00:00 2001 From: Philip Kaufmann Date: Wed, 8 Apr 2015 14:31:53 +0200 Subject: [PATCH] move ThreadFlushWalletDB declaration to walletdb.h --- src/wallet/db.h | 3 --- src/wallet/walletdb.h | 1 + 2 files changed, 1 insertion(+), 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