diff options
| author | Eric Lombrozo <[email protected]> | 2013-01-06 04:30:00 -0800 |
|---|---|---|
| committer | Eric Lombrozo <[email protected]> | 2013-06-05 20:36:10 -0700 |
| commit | 336fe971e68f0336d42e1fa930b6a9c717f612e0 (patch) | |
| tree | ac1e93fe3b0abf840db3c33ec52a7de665d66a0d /src/walletdb.h | |
| parent | Merge pull request #2700 from theuni/gui-split (diff) | |
| download | discoin-336fe971e68f0336d42e1fa930b6a9c717f612e0.tar.xz discoin-336fe971e68f0336d42e1fa930b6a9c717f612e0.zip | |
Get rid of db dependencies on main
Diffstat (limited to 'src/walletdb.h')
| -rw-r--r-- | src/walletdb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/walletdb.h b/src/walletdb.h index 8ae6c3ff4..9732eb29e 100644 --- a/src/walletdb.h +++ b/src/walletdb.h @@ -11,6 +11,8 @@ class CKeyPool; class CAccount; class CAccountingEntry; +class CWallet; +class CWalletTx; /** Error statuses for the wallet database */ enum DBErrors @@ -160,4 +162,6 @@ public: static bool Recover(CDBEnv& dbenv, std::string filename); }; +bool BackupWallet(const CWallet& wallet, const std::string& strDest); + #endif // BITCOIN_WALLETDB_H |