2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2014-2015 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
|
|
|
|
|
|
|
#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
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
protected:
|
|
|
|
CBaseChainParams() {}
|
|
|
|
|
|
|
|
int nRPCPort;
|
|
|
|
std::string strDataDir;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2015-06-27 21:21:41 +02:00
|
|
|
CBaseChainParams& BaseParams(const std::string& chain);
|
|
|
|
|
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
|
|
|
|
|
|
|
/**
|
2015-06-30 21:39:49 +02:00
|
|
|
* Looks for -regtest, -testnet and returns the appropriate BIP70 chain name.
|
|
|
|
* @return CBaseChainParams::MAX_NETWORK_TYPES if an invalid combination is given. CBaseChainParams::MAIN by default.
|
2014-10-09 19:15:38 +02:00
|
|
|
*/
|
2015-06-30 21:39:49 +02:00
|
|
|
std::string ChainNameFromCommandLine();
|
2014-10-09 19:15:38 +02:00
|
|
|
|
2014-07-15 10:22:27 +02:00
|
|
|
/**
|
|
|
|
* Return true if SelectBaseParamsFromCommandLine() has been called to select
|
|
|
|
* a network.
|
|
|
|
*/
|
|
|
|
bool AreBaseParamsConfigured();
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_CHAINPARAMSBASE_H
|