Files
thehub/hub/server/chainparams.h
T

137 lines
4.9 KiB
C++
Raw Permalink Normal View History

2017-08-22 11:42:33 +02:00
/*
2017-11-13 23:09:33 +01:00
* This file is part of the Flowee project
2017-08-22 11:42:33 +02:00
* Copyright (c) 2009-2010 Satoshi Nakamoto
* Copyright (c) 2009-2015 The Bitcoin Core developers
2021-06-20 22:44:44 +02:00
* Copyright (C) 2017 Tom Zander <tom@flowee.org>
2017-08-22 11:42:33 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2018-01-16 10:47:52 +00:00
#ifndef FLOWEE_CHAINPARAMS_H
#define FLOWEE_CHAINPARAMS_H
#include "chainparamsbase.h"
#include "consensus/params.h"
#include "primitives/MutableBlock.h"
#include "protocol.h"
struct CDNSSeedData {
2014-06-16 16:30:38 +02:00
std::string name, host;
CDNSSeedData(const std::string &strName, const std::string &strHost) : name(strName), host(strHost) {}
};
struct SeedSpec6 {
uint8_t addr[16];
uint16_t port;
};
typedef std::map<int, uint256> MapCheckpoints;
struct CCheckpointData {
MapCheckpoints mapCheckpoints;
int64_t nTimeLastCheckpoint;
int64_t nTransactionsLastCheckpoint;
double fTransactionsPerDay;
};
/**
* 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,
MAX_BASE58_TYPES
};
const Consensus::Params& GetConsensus() const { return consensus; }
2017-08-01 13:07:18 +02:00
/// return the original message-start
2014-10-27 20:24:31 -04:00
const CMessageHeader::MessageStartChars& MessageStart() const { return pchMessageStart; }
2017-08-01 13:07:18 +02:00
/// return either of the MessageStart/CashMessageStart based on config options.
2018-04-15 22:35:34 +02:00
inline const CMessageHeader::MessageStartChars& magic() const { return pchMessageStartCash; }
int GetDefaultPort() const { return nDefaultPort; }
2014-03-22 19:52:26 +01:00
Block GenesisBlock() const { return genesis; }
/** Make miner wait to have peers to avoid wasting work */
bool MiningRequiresPeers() const { return fMiningRequiresPeers; }
/** Default value for -checkmempool and -checkblockindex argument */
bool DefaultConsistencyChecks() const { return fDefaultConsistencyChecks; }
2015-04-28 14:47:17 +00:00
/** Policy: Filter transactions that do not match well-defined patterns */
bool RequireStandard() const { return fRequireStandard; }
int64_t MaxTipAge() const { return nMaxTipAge; }
uint64_t PruneAfterHeight() const { return nPruneAfterHeight; }
/** Make miner stop after a block is found. In RPC, don't return until nGenProcLimit blocks are generated */
bool MineBlocksOnDemand() const { return fMineBlocksOnDemand; }
/** In the future use NetworkIDString() for RPC fields */
bool TestnetToBeDeprecatedFieldRPC() const { return fTestnetToBeDeprecatedFieldRPC; }
/** Return the BIP70 network string (main, test or regtest) */
2014-06-11 12:23:49 +02:00
std::string NetworkIDString() const { return strNetworkID; }
2014-06-16 16:30:38 +02:00
const std::vector<CDNSSeedData>& DNSSeeds() const { return vSeeds; }
const std::vector<unsigned char>& Base58Prefix(Base58Type type) const { return base58Prefixes[type]; }
const std::vector<SeedSpec6>& FixedSeeds() const { return vFixedSeeds; }
const CCheckpointData& Checkpoints() const { return checkpointData; }
2017-08-22 11:42:33 +02:00
protected:
2013-10-15 12:13:54 +02:00
CChainParams() {}
Consensus::Params consensus;
2014-10-27 20:24:31 -04:00
CMessageHeader::MessageStartChars pchMessageStart;
2017-07-30 18:11:00 +02:00
CMessageHeader::MessageStartChars pchMessageStartCash;
int nDefaultPort;
long nMaxTipAge;
2015-02-23 14:27:44 -05:00
uint64_t nPruneAfterHeight;
2014-06-16 16:30:38 +02:00
std::vector<CDNSSeedData> vSeeds;
2013-06-23 02:33:47 +02:00
std::vector<unsigned char> base58Prefixes[MAX_BASE58_TYPES];
2014-06-11 12:23:49 +02:00
std::string strNetworkID;
Block genesis;
std::vector<SeedSpec6> vFixedSeeds;
bool fMiningRequiresPeers;
bool fDefaultConsistencyChecks;
bool fRequireStandard;
bool fMineBlocksOnDemand;
bool fTestnetToBeDeprecatedFieldRPC;
CCheckpointData checkpointData;
};
/**
2015-04-28 14:48:28 +00:00
* Return the currently selected parameters. This won't change after app
* startup, except for unit tests.
*/
const CChainParams &Params();
/**
2016-10-27 16:12:47 +02:00
* @returns CChainParams for the given chain name.
*/
CChainParams& Params(const std::string& chain);
bool ParamsConfigured();
/**
* Sets the params returned by Params() to those for the given BIP70 chain name.
* @throws std::runtime_error when the chain is not supported.
*/
void SelectParams(const std::string& chain);
2018-01-16 10:47:52 +00:00
#endif