2014-06-19 15:10:04 +02:00
|
|
|
// Copyright (c) 2014 The Bitcoin 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:
|
|
|
|
enum Network {
|
|
|
|
MAIN,
|
|
|
|
TESTNET,
|
|
|
|
REGTEST,
|
2014-09-04 21:23:42 +02:00
|
|
|
UNITTEST,
|
2014-06-19 15:10:04 +02:00
|
|
|
|
|
|
|
MAX_NETWORK_TYPES
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
Network networkID;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the currently selected parameters. This won't change after app startup
|
|
|
|
* outside of the unit tests.
|
|
|
|
*/
|
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. */
|
|
|
|
void SelectBaseParams(CBaseChainParams::Network network);
|
|
|
|
|
|
|
|
/**
|
2014-10-09 19:15:38 +02:00
|
|
|
* Looks for -regtest or -testnet and returns the appropriate Network ID.
|
|
|
|
* Returns MAX_NETWORK_TYPES if an invalid combination is given.
|
|
|
|
*/
|
|
|
|
CBaseChainParams::Network NetworkIdFromCommandLine();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls NetworkIdFromCommandLine() and then calls SelectParams as appropriate.
|
2014-06-19 15:10:04 +02:00
|
|
|
* Returns false if an invalid combination is given.
|
|
|
|
*/
|
|
|
|
bool SelectBaseParamsFromCommandLine();
|
|
|
|
|
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
|