2013-05-07 15:16:25 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2018-07-27 00:36:45 +02:00
|
|
|
// Copyright (c) 2009-2018 The Bitcoin Core developers
|
2014-10-25 11:24:16 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-05-07 15:16:25 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#ifndef BITCOIN_CHAINPARAMS_H
|
|
|
|
#define BITCOIN_CHAINPARAMS_H
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2017-11-10 01:57:53 +01:00
|
|
|
#include <chainparamsbase.h>
|
|
|
|
#include <consensus/params.h>
|
|
|
|
#include <primitives/block.h>
|
|
|
|
#include <protocol.h>
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2015-05-22 03:50:01 +02:00
|
|
|
#include <memory>
|
2013-05-07 15:16:25 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2015-01-24 05:40:50 +01:00
|
|
|
struct SeedSpec6 {
|
|
|
|
uint8_t addr[16];
|
|
|
|
uint16_t port;
|
|
|
|
};
|
|
|
|
|
2015-06-05 21:36:34 +02:00
|
|
|
typedef std::map<int, uint256> MapCheckpoints;
|
|
|
|
|
|
|
|
struct CCheckpointData {
|
|
|
|
MapCheckpoints mapCheckpoints;
|
2017-01-04 16:31:56 +01:00
|
|
|
};
|
|
|
|
|
2018-04-17 23:15:20 +02:00
|
|
|
/**
|
|
|
|
* Holds various statistics on transactions within a chain. Used to estimate
|
|
|
|
* verification progress during chain sync.
|
|
|
|
*
|
|
|
|
* See also: CChainParams::TxData, GuessVerificationProgress.
|
|
|
|
*/
|
2017-01-04 16:31:56 +01:00
|
|
|
struct ChainTxData {
|
2018-07-29 19:36:35 +02:00
|
|
|
int64_t nTime; //!< UNIX timestamp of last known number of transactions
|
|
|
|
int64_t nTxCount; //!< total number of transactions between genesis and that timestamp
|
|
|
|
double dTxRate; //!< estimated number of transactions per second after that timestamp
|
2015-06-05 21:36:34 +02:00
|
|
|
};
|
2015-01-24 05:40:50 +01:00
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
/**
|
|
|
|
* CChainParams defines various tweakable parameters of a given instance of the
|
|
|
|
* Bitcoin system. There are three: the main network on which people trade goods
|
|
|
|
* and services, the public test network which gets reset from time to time and
|
|
|
|
* a regression test mode which is intended for private networks only. It has
|
|
|
|
* minimal difficulty to ensure that blocks can be found instantly.
|
|
|
|
*/
|
|
|
|
class CChainParams
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Base58Type {
|
|
|
|
PUBKEY_ADDRESS,
|
|
|
|
SCRIPT_ADDRESS,
|
|
|
|
SECRET_KEY,
|
2013-07-15 01:05:25 +02:00
|
|
|
EXT_PUBLIC_KEY,
|
|
|
|
EXT_SECRET_KEY,
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
MAX_BASE58_TYPES
|
|
|
|
};
|
|
|
|
|
2015-02-11 11:58:11 +01:00
|
|
|
const Consensus::Params& GetConsensus() const { return consensus; }
|
2014-10-28 01:24:31 +01:00
|
|
|
const CMessageHeader::MessageStartChars& MessageStart() const { return pchMessageStart; }
|
2013-05-07 15:16:25 +02:00
|
|
|
int GetDefaultPort() const { return nDefaultPort; }
|
2014-03-22 19:52:26 +01:00
|
|
|
|
2014-06-10 19:33:12 +02:00
|
|
|
const CBlock& GenesisBlock() const { return genesis; }
|
2015-03-13 17:25:34 +01:00
|
|
|
/** Default value for -checkmempool and -checkblockindex argument */
|
|
|
|
bool DefaultConsistencyChecks() const { return fDefaultConsistencyChecks; }
|
2015-04-28 16:47:17 +02:00
|
|
|
/** Policy: Filter transactions that do not match well-defined patterns */
|
2014-06-04 12:51:29 +02:00
|
|
|
bool RequireStandard() const { return fRequireStandard; }
|
2015-11-27 15:12:08 +01:00
|
|
|
uint64_t PruneAfterHeight() const { return nPruneAfterHeight; }
|
2018-10-07 14:11:36 +02:00
|
|
|
/** Minimum free space (in GB) needed for data directory */
|
|
|
|
uint64_t AssumedBlockchainSize() const { return m_assumed_blockchain_size; }
|
|
|
|
/** Minimum free space (in GB) needed for data directory when pruned; Does not include prune target*/
|
|
|
|
uint64_t AssumedChainStateSize() const { return m_assumed_chain_state_size; }
|
2014-10-25 11:24:16 +02:00
|
|
|
/** Make miner stop after a block is found. In RPC, don't return until nGenProcLimit blocks are generated */
|
2014-06-04 12:51:29 +02:00
|
|
|
bool MineBlocksOnDemand() const { return fMineBlocksOnDemand; }
|
2014-10-25 11:24:16 +02:00
|
|
|
/** Return the BIP70 network string (main, test or regtest) */
|
2014-06-11 12:23:49 +02:00
|
|
|
std::string NetworkIDString() const { return strNetworkID; }
|
2017-12-12 21:32:50 +01:00
|
|
|
/** Return true if the fallback fee is by default enabled for this network */
|
|
|
|
bool IsFallbackFeeEnabled() const { return m_fallback_fee_enabled; }
|
2017-10-19 23:32:45 +02:00
|
|
|
/** Return the list of hostnames to look up for DNS seeds */
|
|
|
|
const std::vector<std::string>& DNSSeeds() const { return vSeeds; }
|
2014-06-04 12:51:29 +02:00
|
|
|
const std::vector<unsigned char>& Base58Prefix(Base58Type type) const { return base58Prefixes[type]; }
|
2017-08-26 04:55:52 +02:00
|
|
|
const std::string& Bech32HRP() const { return bech32_hrp; }
|
2015-01-24 05:40:50 +01:00
|
|
|
const std::vector<SeedSpec6>& FixedSeeds() const { return vFixedSeeds; }
|
2015-06-05 21:36:34 +02:00
|
|
|
const CCheckpointData& Checkpoints() const { return checkpointData; }
|
2017-01-04 16:31:56 +01:00
|
|
|
const ChainTxData& TxData() const { return chainTxData; }
|
2013-05-07 15:16:25 +02:00
|
|
|
protected:
|
2013-10-15 12:13:54 +02:00
|
|
|
CChainParams() {}
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2015-02-11 11:58:11 +01:00
|
|
|
Consensus::Params consensus;
|
2014-10-28 01:24:31 +01:00
|
|
|
CMessageHeader::MessageStartChars pchMessageStart;
|
2013-05-07 15:16:25 +02:00
|
|
|
int nDefaultPort;
|
Add block pruning functionality
This adds a -prune=N option to bitcoind, which if set to N>0 will enable block
file pruning. When pruning is enabled, block and undo files will be deleted to
try to keep total space used by those files to below the prune target (N, in
MB) specified by the user, subject to some constraints:
- The last 288 blocks on the main chain are always kept (MIN_BLOCKS_TO_KEEP),
- N must be at least 550MB (chosen as a value for the target that could
reasonably be met, with some assumptions about block sizes, orphan rates,
etc; see comment in main.h),
- No blocks are pruned until chainActive is at least 100,000 blocks long (on
mainnet; defined separately for mainnet, testnet, and regtest in chainparams
as nPruneAfterHeight).
This unsets NODE_NETWORK if pruning is enabled.
Also included is an RPC test for pruning (pruning.py).
Thanks to @rdponticelli for earlier work on this feature; this is based in
part off that work.
2015-02-23 20:27:44 +01:00
|
|
|
uint64_t nPruneAfterHeight;
|
2018-10-07 14:11:36 +02:00
|
|
|
uint64_t m_assumed_blockchain_size;
|
|
|
|
uint64_t m_assumed_chain_state_size;
|
2017-10-19 23:32:45 +02:00
|
|
|
std::vector<std::string> vSeeds;
|
2013-06-23 02:33:47 +02:00
|
|
|
std::vector<unsigned char> base58Prefixes[MAX_BASE58_TYPES];
|
2017-08-26 04:55:52 +02:00
|
|
|
std::string bech32_hrp;
|
2014-06-11 12:23:49 +02:00
|
|
|
std::string strNetworkID;
|
2014-06-04 12:51:29 +02:00
|
|
|
CBlock genesis;
|
2015-01-24 05:40:50 +01:00
|
|
|
std::vector<SeedSpec6> vFixedSeeds;
|
2015-03-13 17:25:34 +01:00
|
|
|
bool fDefaultConsistencyChecks;
|
2014-06-04 12:51:29 +02:00
|
|
|
bool fRequireStandard;
|
|
|
|
bool fMineBlocksOnDemand;
|
2015-06-05 21:36:34 +02:00
|
|
|
CCheckpointData checkpointData;
|
2017-01-04 16:31:56 +01:00
|
|
|
ChainTxData chainTxData;
|
2017-12-12 21:32:50 +01:00
|
|
|
bool m_fallback_fee_enabled;
|
2013-05-07 15:16:25 +02:00
|
|
|
};
|
|
|
|
|
2015-05-22 03:50:01 +02:00
|
|
|
/**
|
|
|
|
* Creates and returns a std::unique_ptr<CChainParams> of the chosen chain.
|
|
|
|
* @returns a CChainParams* of the chosen chain.
|
|
|
|
* @throws a std::runtime_error if the chain is not supported.
|
|
|
|
*/
|
2018-06-16 22:38:13 +02:00
|
|
|
std::unique_ptr<const CChainParams> CreateChainParams(const std::string& chain);
|
2015-05-22 03:50:01 +02:00
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
/**
|
2015-04-28 16:48:28 +02:00
|
|
|
* Return the currently selected parameters. This won't change after app
|
|
|
|
* startup, except for unit tests.
|
2013-05-07 15:16:25 +02:00
|
|
|
*/
|
|
|
|
const CChainParams &Params();
|
|
|
|
|
|
|
|
/**
|
2015-06-30 21:39:49 +02:00
|
|
|
* Sets the params returned by Params() to those for the given BIP70 chain name.
|
|
|
|
* @throws std::runtime_error when the chain is not supported.
|
2013-05-07 15:16:25 +02:00
|
|
|
*/
|
2015-06-30 21:39:49 +02:00
|
|
|
void SelectParams(const std::string& chain);
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-11-03 16:16:40 +01:00
|
|
|
#endif // BITCOIN_CHAINPARAMS_H
|