chainparams: Update with data from assumed valid chain

This commit is contained in:
MarcoFalke
2018-07-29 13:36:35 -04:00
parent ad51e1372b
commit fa6094f152
2 changed files with 15 additions and 16 deletions

View File

@@ -32,9 +32,9 @@ struct CCheckpointData {
* See also: CChainParams::TxData, GuessVerificationProgress.
*/
struct ChainTxData {
int64_t nTime;
int64_t nTxCount;
double dTxRate;
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
};
/**