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.
This commit is contained in:
Pieter Wuille
2013-10-19 18:42:14 +02:00
parent 00588c3fac
commit 722fa283d0
7 changed files with 32 additions and 22 deletions

View File

@@ -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;