/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/ipc/stub.cpp
14 строк
396 B
Ryan Ofsky
bitcoin-cli: Add -ipcconnect option
28 фев 2026, 02:26
28 фев 2026, 02:26
8d614bf
Код
Авторство
О чём код?
// Copyright (c) 2025 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 <interfaces/ipc.h> #include <memory> namespace interfaces { std::unique_ptr<Ipc> MakeIpc(const char* exe_name, const char* process_argv0, Init& init) { return {}; } } // namespace interfaces