/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/node/context.cpp
28 строк
795 B
Fabian Jahr
torcontrol: Move tor controller into node context
03 апр 2026, 23:00
Не верифицирован
03 апр 2026, 23:00
b1869e9
Код
Авторство
О чём код?
// 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 <torcontrol.h> #include <txmempool.h> #include <validation.h> #include <validationinterface.h> namespace node { NodeContext::NodeContext() = default; NodeContext::~NodeContext() = default; } // namespace node