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
|
|
|
|
|
* Copyright (C) 2017 Tom Zander <tomz@freedommail.ch>
|
|
|
|
|
*
|
|
|
|
|
* 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/>.
|
|
|
|
|
*/
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2018-01-16 10:47:52 +00:00
|
|
|
#ifndef FLOWEE_CHAINPARAMS_H
|
|
|
|
|
#define FLOWEE_CHAINPARAMS_H
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2014-06-19 15:10:04 +02:00
|
|
|
#include "chainparamsbase.h"
|
2015-02-11 11:58:11 +01:00
|
|
|
#include "consensus/params.h"
|
2014-11-18 21:03:02 +00:00
|
|
|
#include "primitives/block.h"
|
2014-06-04 12:51:29 +02:00
|
|
|
#include "protocol.h"
|
2013-05-07 15:16:25 +02:00
|
|
|
|
|
|
|
|
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) {}
|
2013-05-07 15:16:25 +02:00
|
|
|
};
|
|
|
|
|
|
2015-01-23 23:40:50 -05:00
|
|
|
struct SeedSpec6 {
|
|
|
|
|
uint8_t addr[16];
|
|
|
|
|
uint16_t port;
|
|
|
|
|
};
|
|
|
|
|
|
2015-06-05 15:36:34 -04:00
|
|
|
typedef std::map<int, uint256> MapCheckpoints;
|
|
|
|
|
|
|
|
|
|
struct CCheckpointData {
|
|
|
|
|
MapCheckpoints mapCheckpoints;
|
|
|
|
|
int64_t nTimeLastCheckpoint;
|
|
|
|
|
int64_t nTransactionsLastCheckpoint;
|
|
|
|
|
double fTransactionsPerDay;
|
|
|
|
|
};
|
2015-01-23 23:40:50 -05: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; }
|
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; }
|
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; }
|
2014-10-25 17:24:16 +08:00
|
|
|
/** Make miner wait to have peers to avoid wasting work */
|
2014-06-04 12:51:29 +02:00
|
|
|
bool MiningRequiresPeers() const { return fMiningRequiresPeers; }
|
2015-03-13 09:25:34 -07:00
|
|
|
/** 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 */
|
2014-06-04 12:51:29 +02:00
|
|
|
bool RequireStandard() const { return fRequireStandard; }
|
2015-04-09 11:50:18 +00:00
|
|
|
int64_t MaxTipAge() const { return nMaxTipAge; }
|
2015-11-27 15:12:08 +01:00
|
|
|
uint64_t PruneAfterHeight() const { return nPruneAfterHeight; }
|
2014-10-25 17:24:16 +08: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 17:24:16 +08:00
|
|
|
/** In the future use NetworkIDString() for RPC fields */
|
2014-08-31 22:32:52 +02:00
|
|
|
bool TestnetToBeDeprecatedFieldRPC() const { return fTestnetToBeDeprecatedFieldRPC; }
|
2014-10-25 17:24:16 +08:00
|
|
|
/** 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; }
|
2014-06-04 12:51:29 +02:00
|
|
|
const std::vector<unsigned char>& Base58Prefix(Base58Type type) const { return base58Prefixes[type]; }
|
2015-01-23 23:40:50 -05:00
|
|
|
const std::vector<SeedSpec6>& FixedSeeds() const { return vFixedSeeds; }
|
2015-06-05 15:36:34 -04:00
|
|
|
const CCheckpointData& Checkpoints() const { return checkpointData; }
|
2017-08-22 11:42:33 +02:00
|
|
|
|
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-27 20:24:31 -04:00
|
|
|
CMessageHeader::MessageStartChars pchMessageStart;
|
2017-07-30 18:11:00 +02:00
|
|
|
CMessageHeader::MessageStartChars pchMessageStartCash;
|
2013-05-07 15:16:25 +02:00
|
|
|
int nDefaultPort;
|
2015-04-09 11:50:18 +00:00
|
|
|
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;
|
2014-06-04 12:51:29 +02:00
|
|
|
CBlock genesis;
|
2015-01-23 23:40:50 -05:00
|
|
|
std::vector<SeedSpec6> vFixedSeeds;
|
2014-06-04 12:51:29 +02:00
|
|
|
bool fMiningRequiresPeers;
|
2015-03-13 09:25:34 -07:00
|
|
|
bool fDefaultConsistencyChecks;
|
2014-06-04 12:51:29 +02:00
|
|
|
bool fRequireStandard;
|
|
|
|
|
bool fMineBlocksOnDemand;
|
2014-08-31 22:32:52 +02:00
|
|
|
bool fTestnetToBeDeprecatedFieldRPC;
|
2015-06-05 15:36:34 -04:00
|
|
|
CCheckpointData checkpointData;
|
2013-05-07 15:16:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
2015-04-28 14:48:28 +00: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
|
|
|
/**
|
2016-10-27 16:12:47 +02:00
|
|
|
* @returns CChainParams for the given chain name.
|
2015-06-30 21:39:49 +02:00
|
|
|
*/
|
|
|
|
|
CChainParams& Params(const std::string& chain);
|
2013-05-07 15:16:25 +02:00
|
|
|
|
2019-03-04 18:48:00 +01:00
|
|
|
bool ParamsConfigured();
|
|
|
|
|
|
2013-05-07 15:16:25 +02:00
|
|
|
/**
|
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
|
|
|
|
2018-01-16 10:47:52 +00:00
|
|
|
#endif
|