2020-04-16 13:14:08 -04:00
|
|
|
// Copyright (c) 2019-2020 The Bitcoin Core developers
|
2019-09-17 19:28:03 -03: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 05:34:27 -03:00
|
|
|
#include <addrman.h>
|
2019-09-17 19:59:36 -03:00
|
|
|
#include <banman.h>
|
2019-09-17 19:28:03 -03:00
|
|
|
#include <interfaces/chain.h>
|
2019-09-17 19:59:36 -03:00
|
|
|
#include <net.h>
|
|
|
|
#include <net_processing.h>
|
2020-07-28 13:12:50 -04:00
|
|
|
#include <policy/fees.h>
|
2020-02-12 16:08:28 -03:00
|
|
|
#include <scheduler.h>
|
2020-07-19 14:30:46 -04:00
|
|
|
#include <txmempool.h>
|
2019-09-17 19:28:03 -03:00
|
|
|
|
|
|
|
NodeContext::NodeContext() {}
|
|
|
|
NodeContext::~NodeContext() {}
|