diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-07-27 14:25:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-07-27 14:40:29 +0200 |
| commit | ca37e0f33980a1fe96ac4ed08fd7d692a7a592a5 (patch) | |
| tree | b41b017d88a4db6863cd0fadbee8178aa85f3fa5 /src/main.cpp | |
| parent | Merge pull request #6380 (diff) | |
| parent | Includes: Cleanup around net main and wallet (diff) | |
| download | discoin-ca37e0f33980a1fe96ac4ed08fd7d692a7a592a5.tar.xz discoin-ca37e0f33980a1fe96ac4ed08fd7d692a7a592a5.zip | |
Merge pull request #5697
60c8bac Includes: Cleanup around net main and wallet (Jorge Timón)
9dd793f TRIVIAL: Missing includes (Jorge Timón)
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 54f9f89c4..fefeabeb6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,17 +13,25 @@ #include "checkqueue.h" #include "consensus/consensus.h" #include "consensus/validation.h" +#include "hash.h" #include "init.h" #include "merkleblock.h" #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" #include "undo.h" #include "util.h" #include "utilmoneystr.h" +#include "utilstrencodings.h" #include "validationinterface.h" #include <sstream> |