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
|
|
|
|
|
2022-09-01 15:35:23 -04:00
|
|
|
#include <util/result.h>
|
2022-07-20 18:16:30 +02:00
|
|
|
#include <validation.h>
|
|
|
|
|
|
|
|
class ArgsManager;
|
|
|
|
|
|
|
|
namespace node {
|
2023-05-29 13:15:47 +02:00
|
|
|
[[nodiscard]] util::Result<void> ApplyArgsManOptions(const ArgsManager& args, ChainstateManager::Options& opts);
|
2022-07-20 18:16:30 +02:00
|
|
|
} // namespace node
|
|
|
|
|
|
|
|
#endif // BITCOIN_NODE_CHAINSTATEMANAGER_ARGS_H
|