mirror of
https://github.com/Retropex/bitcoin.git
synced 2025-05-13 03:30:42 +02:00

The key module's functionality is not used by the kernel library, but currently kernel users are still required to initialize the key module's `secp256k1_context_sign` global as part of the `kernel::Context` through `ECC_Start`.
26 lines
687 B
C++
26 lines
687 B
C++
// Copyright (c) 2019-2022 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <node/context.h>
|
|
|
|
#include <addrman.h>
|
|
#include <banman.h>
|
|
#include <interfaces/chain.h>
|
|
#include <kernel/context.h>
|
|
#include <key.h>
|
|
#include <net.h>
|
|
#include <net_processing.h>
|
|
#include <netgroup.h>
|
|
#include <node/kernel_notifications.h>
|
|
#include <policy/fees.h>
|
|
#include <scheduler.h>
|
|
#include <txmempool.h>
|
|
#include <validation.h>
|
|
#include <validationinterface.h>
|
|
|
|
namespace node {
|
|
NodeContext::NodeContext() = default;
|
|
NodeContext::~NodeContext() = default;
|
|
} // namespace node
|