2022-07-20 18:16:30 +02:00
|
|
|
// Copyright (c) 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.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_NODE_CHAINSTATEMANAGER_ARGS_H
|
|
|
|
#define BITCOIN_NODE_CHAINSTATEMANAGER_ARGS_H
|
|
|
|
|
|
|
|
#include <validation.h>
|
|
|
|
|
2022-07-21 11:13:13 +02:00
|
|
|
#include <optional>
|
|
|
|
|
2022-07-20 18:16:30 +02:00
|
|
|
class ArgsManager;
|
2022-07-21 11:13:13 +02:00
|
|
|
struct bilingual_str;
|
2022-07-20 18:16:30 +02:00
|
|
|
|
|
|
|
namespace node {
|
2022-07-21 11:13:13 +02:00
|
|
|
std::optional<bilingual_str> ApplyArgsManOptions(const ArgsManager& args, ChainstateManager::Options& opts);
|
2022-07-20 18:16:30 +02:00
|
|
|
} // namespace node
|
|
|
|
|
|
|
|
#endif // BITCOIN_NODE_CHAINSTATEMANAGER_ARGS_H
|