Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <chainparams.h>
#include <chainparamsbase.h>
#include <common/args.h>
#include <consensus/params.h>
#include <deploymentinfo.h>
#include <logging.h>
#include <tinyformat.h>
#include <util/chaintype.h>
#include <util/strencodings.h>
#include <util/string.h>
#include <cassert>
#include <cstdint>
#include <limits>
#include <stdexcept>
#include <vector>
Go to the source code of this file.
Functions | |
void | ReadSigNetArgs (const ArgsManager &args, CChainParams::SigNetOptions &options) |
void | ReadRegTestArgs (const ArgsManager &args, CChainParams::RegTestOptions &options) |
const CChainParams & | Params () |
Return the currently selected parameters. More... | |
std::unique_ptr< const CChainParams > | CreateChainParams (const ArgsManager &args, const ChainType chain) |
Creates and returns a std::unique_ptr<CChainParams> of the chosen chain. More... | |
void | SelectParams (const ChainType chain) |
Sets the params returned by Params() to those for the given chain type. More... | |
Variables | |
static std::unique_ptr< const CChainParams > | globalChainParams |
std::unique_ptr< const CChainParams > CreateChainParams | ( | const ArgsManager & | args, |
const ChainType | chain | ||
) |
Creates and returns a std::unique_ptr<CChainParams> of the chosen chain.
Definition at line 112 of file chainparams.cpp.
const CChainParams & Params | ( | ) |
Return the currently selected parameters.
This won't change after app startup, except for unit tests.
Definition at line 107 of file chainparams.cpp.
void ReadRegTestArgs | ( | const ArgsManager & | args, |
CChainParams::RegTestOptions & | options | ||
) |
Definition at line 44 of file chainparams.cpp.
void ReadSigNetArgs | ( | const ArgsManager & | args, |
CChainParams::SigNetOptions & | options | ||
) |
Definition at line 26 of file chainparams.cpp.
void SelectParams | ( | const ChainType | chain | ) |
Sets the params returned by Params() to those for the given chain type.
Definition at line 135 of file chainparams.cpp.
|
static |
Definition at line 105 of file chainparams.cpp.