diff options
author | Fabian Jahr <fjahr@protonmail.com> | 2019-10-28 18:33:40 +0100 |
---|---|---|
committer | Fabian Jahr <fjahr@protonmail.com> | 2019-11-01 12:06:35 +0100 |
commit | 3ed8e3d079a3860dcdf944f7c1aa37765a53da32 (patch) | |
tree | c7e92e63b387685b03fbf96a6ecae76467e88442 /src/chainparams.h | |
parent | d6e493f0c2850b522a676a005935163beddaa2cc (diff) |
doc: Remove explicit network name references
Diffstat (limited to 'src/chainparams.h')
-rw-r--r-- | src/chainparams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chainparams.h b/src/chainparams.h index 8f1d27e03c..6be066806b 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -75,7 +75,7 @@ public: uint64_t AssumedChainStateSize() const { return m_assumed_chain_state_size; } /** Whether it is possible to mine blocks on demand (no retargeting) */ bool MineBlocksOnDemand() const { return consensus.fPowNoRetargeting; } - /** Return the BIP70 network string (main, test or regtest) */ + /** Return the network string */ std::string NetworkIDString() const { return strNetworkID; } /** Return the list of hostnames to look up for DNS seeds */ const std::vector<std::string>& DNSSeeds() const { return vSeeds; } @@ -120,7 +120,7 @@ std::unique_ptr<const CChainParams> CreateChainParams(const std::string& chain); const CChainParams &Params(); /** - * Sets the params returned by Params() to those for the given BIP70 chain name. + * Sets the params returned by Params() to those for the given chain name. * @throws std::runtime_error when the chain is not supported. */ void SelectParams(const std::string& chain); |