BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
chainparamsbase.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2018 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_CHAINPARAMSBASE_H
6 #define BITCOIN_CHAINPARAMSBASE_H
7 
8 #include <memory>
9 #include <string>
10 #include <vector>
11 
17 {
18 public:
20  static const std::string MAIN;
21  static const std::string TESTNET;
22  static const std::string REGTEST;
23 
24  const std::string& DataDir() const { return strDataDir; }
25  int RPCPort() const { return nRPCPort; }
26 
27  CBaseChainParams() = delete;
28  CBaseChainParams(const std::string& data_dir, int rpc_port) : nRPCPort(rpc_port), strDataDir(data_dir) {}
29 
30 private:
31  int nRPCPort;
32  std::string strDataDir;
33 };
34 
40 std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const std::string& chain);
41 
46 
52 
54 void SelectBaseParams(const std::string& chain);
55 
56 #endif // BITCOIN_CHAINPARAMSBASE_H
void SelectBaseParams(const std::string &chain)
Sets the params returned by Params() to those for the given network.
static const std::string REGTEST
std::string strDataDir
std::unique_ptr< CBaseChainParams > CreateBaseChainParams(const std::string &chain)
Creates and returns a std::unique_ptr<CBaseChainParams> of the chosen chain.
CBaseChainParams(const std::string &data_dir, int rpc_port)
CBaseChainParams()=delete
const std::string & DataDir() const
static const std::string MAIN
BIP70 chain name strings (main, test or regtest)
const CBaseChainParams & BaseParams()
Return the currently selected parameters.
int RPCPort() const
CBaseChainParams defines the base parameters (shared between bsha3-cli and bsha3d) of a given instanc...
void SetupChainParamsBaseOptions()
Set the arguments for chainparams.
static const std::string TESTNET