diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-10-29 18:01:57 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-10-29 18:01:57 -0700 |
commit | e13934c94eb6e95c21e04b92c4b0775b2bded67e (patch) | |
tree | c4ed663519a61e6d3a77478c25381ede579f129c /src/init.h | |
parent | cde10602a6e4cfbf10126ea9bcefb6b79175818b (diff) | |
parent | 722fa283d04dfe9c70418e69535a08eea06b4377 (diff) |
Merge pull request #3115 from sipa/walletmain
Interaction cleanups between main and wallet
Diffstat (limited to 'src/init.h')
-rw-r--r-- | src/init.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/init.h b/src/init.h index 785a6cdba1..8cb1bf52fc 100644 --- a/src/init.h +++ b/src/init.h @@ -5,7 +5,10 @@ #ifndef BITCOIN_INIT_H #define BITCOIN_INIT_H -#include "wallet.h" +#include <string> +#include <boost/thread.hpp> + +class CWallet; extern std::string strWalletFile; extern CWallet* pwalletMain; |