diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-07-29 13:36:35 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-07-29 13:30:41 -0400 |
commit | fa6094f1529ccb8068db06c63a0fecebb3f82583 (patch) | |
tree | 37900ce266ef5dfa4d0007dee5fc77df34006a12 /src/chainparams.h | |
parent | ad51e1372bc645fc8710da2bc9e0a9fc6c0f27bb (diff) |
chainparams: Update with data from assumed valid chain
Diffstat (limited to 'src/chainparams.h')
-rw-r--r-- | src/chainparams.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chainparams.h b/src/chainparams.h index dd029b9d5b..344cbb1a8a 100644 --- a/src/chainparams.h +++ b/src/chainparams.h @@ -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 }; /** |