2022-12-24 18:49:50 -05:00
|
|
|
// Copyright (c) 2019-2022 The Bitcoin Core developers
|
2019-09-17 18:28:03 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
|
|
#include <node/context.h>
|
|
|
|
|
|
2020-10-23 04:34:27 -04:00
|
|
|
#include <addrman.h>
|
2019-09-17 18:59:36 -04:00
|
|
|
#include <banman.h>
|
2019-09-17 18:28:03 -04:00
|
|
|
#include <interfaces/chain.h>
|
2022-05-25 14:31:54 -04:00
|
|
|
#include <kernel/context.h>
|
2019-09-17 18:59:36 -04:00
|
|
|
#include <net.h>
|
|
|
|
|
#include <net_processing.h>
|
2021-08-31 08:32:40 -04:00
|
|
|
#include <netgroup.h>
|
2020-07-28 13:12:50 -04:00
|
|
|
#include <policy/fees.h>
|
2020-02-12 14:08:28 -05:00
|
|
|
#include <scheduler.h>
|
2020-07-19 14:30:46 -04:00
|
|
|
#include <txmempool.h>
|
2020-10-06 17:35:11 -04:00
|
|
|
#include <validation.h>
|
2019-09-17 18:28:03 -04:00
|
|
|
|
2021-11-12 10:06:00 -05:00
|
|
|
namespace node {
|
2022-05-11 11:02:15 -04:00
|
|
|
NodeContext::NodeContext() = default;
|
|
|
|
|
NodeContext::~NodeContext() = default;
|
2021-11-12 10:06:00 -05:00
|
|
|
} // namespace node
|