2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2019-2020 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 09:34:27 +01: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>
|
2019-09-17 18:59:36 -04:00
|
|
|
#include <net.h>
|
|
|
|
#include <net_processing.h>
|
2021-08-31 13:32:40 +01:00
|
|
|
#include <netgroup.h>
|
2020-07-28 19:12:50 +02:00
|
|
|
#include <policy/fees.h>
|
2020-02-12 11:08:28 -08:00
|
|
|
#include <scheduler.h>
|
2020-07-19 20:30:46 +02: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 16:02:15 +01:00
|
|
|
NodeContext::NodeContext() = default;
|
|
|
|
NodeContext::~NodeContext() = default;
|
2021-11-12 10:06:00 -05:00
|
|
|
} // namespace node
|