diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-10-20 16:59:33 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-10-20 17:06:28 +0200 |
| commit | e26a3f6713f8f12640cdb75aad48676e901e0c75 (patch) | |
| tree | d661b5d59dc32e59570910adf494155c4093faf6 /src/chainparams.h | |
| parent | Merge pull request #6841 (diff) | |
| parent | Chainparams: Translations: DRY: options and error strings (diff) | |
| download | discoin-e26a3f6713f8f12640cdb75aad48676e901e0c75.tar.xz discoin-e26a3f6713f8f12640cdb75aad48676e901e0c75.zip | |
Merge pull request #6235
55a8975 Chainparams: Translations: DRY: options and error strings (Jorge Timón)
f3525e2 Chainparams: Replace CBaseChainParams::Network enum with string constants (suggested by Wladimir) (Jorge Timón)
Diffstat (limited to 'src/chainparams.h')
| -rw-r--r-- | src/chainparams.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/chainparams.h b/src/chainparams.h index 342bccb12..cb061d596 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -105,16 +105,15 @@ protected: */ const CChainParams &Params(); -/** Return parameters for the given network. */ -CChainParams &Params(CBaseChainParams::Network network); - -/** Sets the params returned by Params() to those for the given network. */ -void SelectParams(CBaseChainParams::Network network); +/** + * @returns CChainParams for the given BIP70 chain name. + */ +CChainParams& Params(const std::string& chain); /** - * Looks for -regtest or -testnet and then calls SelectParams as appropriate. - * Returns false if an invalid combination is given. + * Sets the params returned by Params() to those for the given BIP70 chain name. + * @throws std::runtime_error when the chain is not supported. */ -bool SelectParamsFromCommandLine(); +void SelectParams(const std::string& chain); #endif // BITCOIN_CHAINPARAMS_H |