diff options
| author | MarcoFalke <[email protected]> | 2018-07-29 13:36:35 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-07-29 13:30:41 -0400 |
| commit | fa6094f1529ccb8068db06c63a0fecebb3f82583 (patch) | |
| tree | 37900ce266ef5dfa4d0007dee5fc77df34006a12 /src/chainparams.h | |
| parent | Merge #13774: Return void instead of bool for functions that cannot fail (diff) | |
| download | discoin-fa6094f1529ccb8068db06c63a0fecebb3f82583.tar.xz discoin-fa6094f1529ccb8068db06c63a0fecebb3f82583.zip | |
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 dd029b9d5..344cbb1a8 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 }; /** |