2018-01-02 18:12:05 +01:00
|
|
|
// Copyright (c) 2014-2017 The Bitcoin Core developers
|
2014-10-25 11:24:16 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-06-19 15:10:04 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_CHAINPARAMSBASE_H
|
|
|
|
#define BITCOIN_CHAINPARAMSBASE_H
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2015-05-22 03:50:01 +02:00
|
|
|
#include <memory>
|
2014-06-19 15:10:04 +02:00
|
|
|
#include <string>
|
2014-09-14 12:43:56 +02:00
|
|
|
#include <vector>
|
2014-06-19 15:10:04 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* CBaseChainParams defines the base parameters (shared between bitcoin-cli and bitcoind)
|
|
|
|
* of a given instance of the Bitcoin system.
|
|
|
|
*/
|
|
|
|
class CBaseChainParams
|
|
|
|
{
|
|
|
|
public:
|
2015-06-30 21:39:49 +02:00
|
|
|
/** BIP70 chain name strings (main, test or regtest) */
|
|
|
|
static const std::string MAIN;
|
|
|
|
static const std::string TESTNET;
|
|
|
|
static const std::string REGTEST;
|
2014-06-19 15:10:04 +02:00
|
|
|
|
|
|
|
const std::string& DataDir() const { return strDataDir; }
|
|
|
|
int RPCPort() const { return nRPCPort; }
|
2014-09-19 19:21:46 +02:00
|
|
|
|
2017-12-12 02:32:44 +01:00
|
|
|
CBaseChainParams() = delete;
|
|
|
|
CBaseChainParams(const std::string& data_dir, int rpc_port) : nRPCPort(rpc_port), strDataDir(data_dir) {}
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2017-12-12 02:32:44 +01:00
|
|
|
private:
|
2014-06-19 15:10:04 +02:00
|
|
|
int nRPCPort;
|
|
|
|
std::string strDataDir;
|
|
|
|
};
|
|
|
|
|
2015-05-22 03:50:01 +02:00
|
|
|
/**
|
|
|
|
* Creates and returns a std::unique_ptr<CBaseChainParams> of the chosen chain.
|
|
|
|
* @returns a CBaseChainParams* of the chosen chain.
|
|
|
|
* @throws a std::runtime_error if the chain is not supported.
|
|
|
|
*/
|
|
|
|
std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const std::string& chain);
|
|
|
|
|
2015-05-25 09:00:17 +02:00
|
|
|
/**
|
|
|
|
* Append the help messages for the chainparams options to the
|
|
|
|
* parameter string.
|
|
|
|
*/
|
|
|
|
void AppendParamsHelpMessages(std::string& strUsage, bool debugHelp=true);
|
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
/**
|
2015-04-28 16:48:28 +02:00
|
|
|
* Return the currently selected parameters. This won't change after app
|
|
|
|
* startup, except for unit tests.
|
2014-06-19 15:10:04 +02:00
|
|
|
*/
|
2014-09-19 19:21:46 +02:00
|
|
|
const CBaseChainParams& BaseParams();
|
2014-06-19 15:10:04 +02:00
|
|
|
|
|
|
|
/** Sets the params returned by Params() to those for the given network. */
|
2015-06-30 21:39:49 +02:00
|
|
|
void SelectBaseParams(const std::string& chain);
|
2014-06-19 15:10:04 +02:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_CHAINPARAMSBASE_H
|