diff options
| author | Jorge Timón <[email protected]> | 2015-07-05 14:17:46 +0200 |
|---|---|---|
| committer | Jorge Timón <[email protected]> | 2015-07-23 21:10:22 +0200 |
| commit | 9dd793f499254600efa468938cef9baa28ac81b0 (patch) | |
| tree | 5e42b1266d5e8c5fb64366778b6a3118a79adf2e /src/rpcblockchain.cpp | |
| parent | Merge pull request #6381 (diff) | |
| download | discoin-9dd793f499254600efa468938cef9baa28ac81b0.tar.xz discoin-9dd793f499254600efa468938cef9baa28ac81b0.zip | |
TRIVIAL: Missing includes
Diffstat (limited to 'src/rpcblockchain.cpp')
| -rw-r--r-- | src/rpcblockchain.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rpcblockchain.cpp b/src/rpcblockchain.cpp index f1c5ffe05..5817f0ce5 100644 --- a/src/rpcblockchain.cpp +++ b/src/rpcblockchain.cpp @@ -3,13 +3,19 @@ // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. +#include "chain.h" +#include "chainparams.h" #include "checkpoints.h" +#include "coins.h" #include "consensus/validation.h" #include "main.h" #include "primitives/transaction.h" #include "rpcserver.h" +#include "streams.h" #include "sync.h" +#include "txmempool.h" #include "util.h" +#include "utilstrencodings.h" #include <stdint.h> |