mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Merge #10181: Include cleanup
1c897fc
Missing includes (Jorge Timón)a1fd450
Trivial: Remove unneeded includes from .h: (Jorge Timón) Tree-SHA512: ada3e62cc2435e58172a88b380be371b717a05725956c15e5493b6e19fe2903e5e6e43fd22dc24699333a0e8a0c7b42eb1ae61b41cb4ba82495be18e2d4ef3c6 move "#include "chain.h"" down a line Signed-off-by: Pasta <pasta@dashboost.org>
This commit is contained in:
parent
809aae73a1
commit
3d46bd3e79
@ -5,6 +5,8 @@
|
|||||||
#ifndef BITCOIN_CHECKQUEUE_H
|
#ifndef BITCOIN_CHECKQUEUE_H
|
||||||
#define BITCOIN_CHECKQUEUE_H
|
#define BITCOIN_CHECKQUEUE_H
|
||||||
|
|
||||||
|
#include "sync.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#ifndef BITCOIN_COINS_H
|
#ifndef BITCOIN_COINS_H
|
||||||
#define BITCOIN_COINS_H
|
#define BITCOIN_COINS_H
|
||||||
|
|
||||||
|
#include "primitives/transaction.h"
|
||||||
#include "compressor.h"
|
#include "compressor.h"
|
||||||
#include "core_memusage.h"
|
#include "core_memusage.h"
|
||||||
#include "hash.h"
|
#include "hash.h"
|
||||||
|
@ -52,7 +52,6 @@
|
|||||||
#define DEFAULT_ALLOW_OPTIMISTIC_SEND false
|
#define DEFAULT_ALLOW_OPTIMISTIC_SEND false
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
class CAddrMan;
|
|
||||||
class CScheduler;
|
class CScheduler;
|
||||||
class CNode;
|
class CNode;
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
#include "policy/policy.h"
|
#include "policy/policy.h"
|
||||||
|
|
||||||
#include "validation.h"
|
#include "validation.h"
|
||||||
|
#include "coins.h"
|
||||||
#include "tinyformat.h"
|
#include "tinyformat.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "utilstrencodings.h"
|
#include "utilstrencodings.h"
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
#include "peertablemodel.h"
|
#include "peertablemodel.h"
|
||||||
|
|
||||||
#include "alert.h"
|
#include "alert.h"
|
||||||
|
#include "chain.h"
|
||||||
#include "chainparams.h"
|
#include "chainparams.h"
|
||||||
#include "checkpoints.h"
|
#include "checkpoints.h"
|
||||||
#include "clientversion.h"
|
#include "clientversion.h"
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "transactiontablemodel.h"
|
#include "transactiontablemodel.h"
|
||||||
|
|
||||||
#include "base58.h"
|
#include "base58.h"
|
||||||
|
#include "chain.h"
|
||||||
#include "keystore.h"
|
#include "keystore.h"
|
||||||
#include "validation.h"
|
#include "validation.h"
|
||||||
#include "net.h" // for g_connman
|
#include "net.h" // for g_connman
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include "base58.h"
|
#include "base58.h"
|
||||||
|
#include "chain.h"
|
||||||
#include "clientversion.h"
|
#include "clientversion.h"
|
||||||
#include "init.h"
|
#include "init.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
#include "alert.h"
|
#include "alert.h"
|
||||||
#include "arith_uint256.h"
|
#include "arith_uint256.h"
|
||||||
#include "blockencodings.h"
|
#include "blockencodings.h"
|
||||||
|
#include "chain.h"
|
||||||
#include "chainparams.h"
|
#include "chainparams.h"
|
||||||
#include "checkpoints.h"
|
#include "checkpoints.h"
|
||||||
#include "checkqueue.h"
|
#include "checkqueue.h"
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "amount.h"
|
#include "amount.h"
|
||||||
#include "chain.h"
|
|
||||||
#include "coins.h"
|
#include "coins.h"
|
||||||
#include "fs.h"
|
#include "fs.h"
|
||||||
#include "protocol.h" // For CMessageHeader::MessageStartChars
|
#include "protocol.h" // For CMessageHeader::MessageStartChars
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "consensus/validation.h"
|
#include "consensus/validation.h"
|
||||||
#include "core_io.h"
|
#include "core_io.h"
|
||||||
#include "init.h"
|
#include "init.h"
|
||||||
|
#include "wallet/coincontrol.h"
|
||||||
#include "instantsend.h"
|
#include "instantsend.h"
|
||||||
#include "net.h"
|
#include "net.h"
|
||||||
#include "policy/fees.h"
|
#include "policy/fees.h"
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
// Distributed under the MIT software license, see the accompanying
|
// Distributed under the MIT software license, see the accompanying
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#include "chain.h"
|
||||||
#include "chainparams.h"
|
#include "chainparams.h"
|
||||||
#include "streams.h"
|
#include "streams.h"
|
||||||
#include "zmqpublishnotifier.h"
|
#include "zmqpublishnotifier.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user