From 722fa283d04dfe9c70418e69535a08eea06b4377 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 19 Oct 2013 18:42:14 +0200 Subject: Break dependency of init on wallet. This required some code movement (what was CWalletTx::AcceptToMemoryPool doing in main?), and adding a few explicit includes that used to be implicit through init.h. --- src/init.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/init.h') 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 +#include + +class CWallet; extern std::string strWalletFile; extern CWallet* pwalletMain; -- cgit v1.2.3