mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 10:43:19 -03:00
e23088707b
This is a follow up of https://github.com/bitcoin/bitcoin/pull/27491, more concretely https://github.com/bitcoin/bitcoin/pull/27491#discussion_r1188847896, for not using default cases (as per the style guide), and https://github.com/bitcoin/bitcoin/pull/27491#discussion_r1188852707 and https://github.com/bitcoin/bitcoin/pull/27491#discussion_r1188851857 for avoiding dead code. Also change chain name to chain type in docstrings
55 lines
1.6 KiB
C++
55 lines
1.6 KiB
C++
// Copyright (c) 2014-2020 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_CHAINPARAMSBASE_H
|
|
#define BITCOIN_CHAINPARAMSBASE_H
|
|
|
|
#include <util/chaintype.h>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
class ArgsManager;
|
|
|
|
/**
|
|
* CBaseChainParams defines the base parameters (shared between bitcoin-cli and bitcoind)
|
|
* of a given instance of the Bitcoin system.
|
|
*/
|
|
class CBaseChainParams
|
|
{
|
|
public:
|
|
const std::string& DataDir() const { return strDataDir; }
|
|
uint16_t RPCPort() const { return m_rpc_port; }
|
|
uint16_t OnionServiceTargetPort() const { return m_onion_service_target_port; }
|
|
|
|
CBaseChainParams() = delete;
|
|
CBaseChainParams(const std::string& data_dir, uint16_t rpc_port, uint16_t onion_service_target_port)
|
|
: m_rpc_port(rpc_port), m_onion_service_target_port(onion_service_target_port), strDataDir(data_dir) {}
|
|
|
|
private:
|
|
const uint16_t m_rpc_port;
|
|
const uint16_t m_onion_service_target_port;
|
|
std::string strDataDir;
|
|
};
|
|
|
|
/**
|
|
* Creates and returns a std::unique_ptr<CBaseChainParams> of the chosen chain.
|
|
*/
|
|
std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const ChainType chain);
|
|
|
|
/**
|
|
*Set the arguments for chainparams
|
|
*/
|
|
void SetupChainParamsBaseOptions(ArgsManager& argsman);
|
|
|
|
/**
|
|
* Return the currently selected parameters. This won't change after app
|
|
* startup, except for unit tests.
|
|
*/
|
|
const CBaseChainParams& BaseParams();
|
|
|
|
/** Sets the params returned by Params() to those for the given chain. */
|
|
void SelectBaseParams(const ChainType chain);
|
|
|
|
#endif // BITCOIN_CHAINPARAMSBASE_H
|