Missing includes
This commit is contained in:
parent
a1fd450328
commit
1c897fc3da
8 changed files with 9 additions and 0 deletions
|
@ -5,6 +5,8 @@
|
|||
#ifndef BITCOIN_CHECKQUEUE_H
|
||||
#define BITCOIN_CHECKQUEUE_H
|
||||
|
||||
#include "sync.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#ifndef BITCOIN_COINS_H
|
||||
#define BITCOIN_COINS_H
|
||||
|
||||
#include "primitives/transaction.h"
|
||||
#include "compressor.h"
|
||||
#include "core_memusage.h"
|
||||
#include "hash.h"
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include "policy/policy.h"
|
||||
|
||||
#include "validation.h"
|
||||
#include "coins.h"
|
||||
#include "tinyformat.h"
|
||||
#include "util.h"
|
||||
#include "utilstrencodings.h"
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "guiutil.h"
|
||||
#include "peertablemodel.h"
|
||||
|
||||
#include "chain.h"
|
||||
#include "chainparams.h"
|
||||
#include "checkpoints.h"
|
||||
#include "clientversion.h"
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#include "transactiontablemodel.h"
|
||||
|
||||
#include "base58.h"
|
||||
#include "chain.h"
|
||||
#include "keystore.h"
|
||||
#include "validation.h"
|
||||
#include "net.h" // for g_connman
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include "base58.h"
|
||||
#include "chain.h"
|
||||
#include "clientversion.h"
|
||||
#include "init.h"
|
||||
#include "validation.h"
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "consensus/validation.h"
|
||||
#include "core_io.h"
|
||||
#include "init.h"
|
||||
#include "wallet/coincontrol.h"
|
||||
#include "validation.h"
|
||||
#include "net.h"
|
||||
#include "policy/policy.h"
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
// 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 "streams.h"
|
||||
#include "zmqpublishnotifier.h"
|
||||
|
|
Loading…
Reference in a new issue