diff options
author | Jorge Timón <jtimon@jtimon.cc> | 2015-07-05 14:30:07 +0200 |
---|---|---|
committer | Jorge Timón <jtimon@jtimon.cc> | 2015-07-23 21:10:26 +0200 |
commit | 60c8bac77c6612b84e3496b2227a01058d720ecc (patch) | |
tree | 81c2eb2843639b823626fb8c02514d02129874a9 /src/main.cpp | |
parent | 9dd793f499254600efa468938cef9baa28ac81b0 (diff) |
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.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 58c42cf96e..cf0002cc35 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,6 +19,12 @@ #include "net.h" #include "policy/policy.h" #include "pow.h" +#include "primitives/block.h" +#include "primitives/transaction.h" +#include "script/script.h" +#include "script/sigcache.h" +#include "script/standard.h" +#include "tinyformat.h" #include "txdb.h" #include "txmempool.h" #include "ui_interface.h" |