aboutsummaryrefslogtreecommitdiff
path: root/src/chainparamsbase.h
diff options
context:
space:
mode:
authorjtimon <jtimon@blockstream.io>2014-10-09 19:15:38 +0200
committerjtimon <jtimon@blockstream.io>2014-10-10 12:05:20 +0200
commitb796cb084bd3865d094d86da2f33cd5c68294a43 (patch)
tree41ade1a991db35b37d753a79010e655cf67ed85c /src/chainparamsbase.h
parent3fdb9e8c159a2bc3ac853b469dae9ba0ecf739f3 (diff)
downloadbitcoin-b796cb084bd3865d094d86da2f33cd5c68294a43.tar.xz
SQUASHME: NetworkIdFromCommandLine() function instead of method
Diffstat (limited to 'src/chainparamsbase.h')
-rw-r--r--src/chainparamsbase.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/chainparamsbase.h b/src/chainparamsbase.h
index f24337cef0..ff3e811988 100644
--- a/src/chainparamsbase.h
+++ b/src/chainparamsbase.h
@@ -26,11 +26,6 @@ public:
const std::string& DataDir() const { return strDataDir; }
int RPCPort() const { return nRPCPort; }
- /**
- * Looks for -regtest or -testnet and returns the appropriate Network ID.
- * Returns MAX_NETWORK_TYPES if an invalid combination is given.
- */
- static Network NetworkIdFromCommandLine();
protected:
CBaseChainParams() {}
@@ -49,7 +44,13 @@ const CBaseChainParams& BaseParams();
void SelectBaseParams(CBaseChainParams::Network network);
/**
- * Calls CBaseChainParams::NetworkIdFromCommandLine() and then calls SelectParams as appropriate.
+ * 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.
* Returns false if an invalid combination is given.
*/
bool SelectBaseParamsFromCommandLine();