diff options
author | Eric Lombrozo <elombrozo@gmail.com> | 2013-01-06 04:30:00 -0800 |
---|---|---|
committer | Eric Lombrozo <elombrozo@gmail.com> | 2013-06-05 20:36:10 -0700 |
commit | 336fe971e68f0336d42e1fa930b6a9c717f612e0 (patch) | |
tree | ac1e93fe3b0abf840db3c33ec52a7de665d66a0d /src/wallet.h | |
parent | c94bd68547df9ba7645305f9813e02d548e8a981 (diff) |
Get rid of db dependencies on main
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet.h b/src/wallet.h index 7fcb8e13ce..22dce78e91 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -5,6 +5,8 @@ #ifndef BITCOIN_WALLET_H #define BITCOIN_WALLET_H +#include "walletdb.h" + #include <string> #include <vector> @@ -16,12 +18,12 @@ #include "script.h" #include "ui_interface.h" #include "util.h" -#include "walletdb.h" class CAccountingEntry; class CWalletTx; class CReserveKey; class COutput; +class CWalletDB; /** (client) version numbers for particular wallet features */ enum WalletFeature |