mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Replace addrman.h include with forward decl in net.h
Also, add missing addrman.h includes
This commit is contained in:
parent
ffdf8ee43e
commit
fa815f8473
4 changed files with 6 additions and 3 deletions
|
@ -10,6 +10,7 @@
|
|||
#include <net.h>
|
||||
|
||||
#include <addrdb.h>
|
||||
#include <addrman.h>
|
||||
#include <banman.h>
|
||||
#include <clientversion.h>
|
||||
#include <compat.h>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
#ifndef BITCOIN_NET_H
|
||||
#define BITCOIN_NET_H
|
||||
|
||||
#include <addrman.h>
|
||||
#include <chainparams.h>
|
||||
#include <common/bloom.h>
|
||||
#include <compat.h>
|
||||
|
@ -37,9 +36,10 @@
|
|||
#include <thread>
|
||||
#include <vector>
|
||||
|
||||
class CScheduler;
|
||||
class CNode;
|
||||
class AddrMan;
|
||||
class BanMan;
|
||||
class CNode;
|
||||
class CScheduler;
|
||||
struct bilingual_str;
|
||||
|
||||
/** Default for -whitelistrelay. */
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
#include <rpc/server.h>
|
||||
|
||||
#include <addrman.h>
|
||||
#include <banman.h>
|
||||
#include <chainparams.h>
|
||||
#include <clientversion.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 <addrman.h>
|
||||
#include <chainparams.h>
|
||||
#include <chainparamsbase.h>
|
||||
#include <net.h>
|
||||
|
|
Loading…
Reference in a new issue