/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v31.0rc2
src/node/context.cpp
27 строк
771 B
MarcoFalke
scripted-diff: [doc] Unify stale copyright headers
17 дек 2025, 00:21
17 дек 2025, 00:21
fa5f297
Код
Авторство
О чём код?
// Copyright (c) 2019-present 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 <interfaces/mining.h> #include <kernel/context.h> #include <key.h> #include <net.h> #include <net_processing.h> #include <netgroup.h> #include <node/kernel_notifications.h> #include <node/warnings.h> #include <policy/fees/block_policy_estimator.h> #include <scheduler.h> #include <txmempool.h> #include <validation.h> #include <validationinterface.h> namespace node { NodeContext::NodeContext() = default; NodeContext::~NodeContext() = default; } // namespace node