diff options
| author | Jorge Timón <[email protected]> | 2015-07-05 14:30:07 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2015-07-23 21:10:26 +0200 |
| commit | 60c8bac77c6612b84e3496b2227a01058d720ecc (patch) | |
| tree | 81c2eb2843639b823626fb8c02514d02129874a9 /src/main.h | |
| parent | TRIVIAL: Missing includes (diff) | |
| download | discoin-60c8bac77c6612b84e3496b2227a01058d720ecc.tar.xz discoin-60c8bac77c6612b84e3496b2227a01058d720ecc.zip | |
Includes: Cleanup around net main and wallet
-Move from .h to .cpp: in main, net and wallet
-Remove unnecessary #include "main.h"
-Cleanup some wallet files includes
Diffstat (limited to 'src/main.h')
| -rw-r--r-- | src/main.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/main.h b/src/main.h index 78a139012..96ad54cda 100644 --- a/src/main.h +++ b/src/main.h @@ -12,19 +12,10 @@ #include "amount.h" #include "chain.h" -#include "chainparams.h" #include "coins.h" #include "net.h" -#include "primitives/block.h" -#include "primitives/transaction.h" -#include "script/script.h" #include "script/script_error.h" -#include "script/sigcache.h" -#include "script/standard.h" #include "sync.h" -#include "tinyformat.h" -#include "txmempool.h" -#include "uint256.h" #include <algorithm> #include <exception> @@ -42,6 +33,7 @@ class CBlockTreeDB; class CBloomFilter; class CInv; class CScriptCheck; +class CTxMemPool; class CValidationInterface; class CValidationState; |