aboutsummaryrefslogtreecommitdiff
path: root/src/chainparams.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-07-29 13:36:35 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-07-29 13:30:41 -0400
commitfa6094f1529ccb8068db06c63a0fecebb3f82583 (patch)
tree37900ce266ef5dfa4d0007dee5fc77df34006a12 /src/chainparams.h
parentad51e1372bc645fc8710da2bc9e0a9fc6c0f27bb (diff)
downloadbitcoin-fa6094f1529ccb8068db06c63a0fecebb3f82583.tar.xz
chainparams: Update with data from assumed valid chain
Diffstat (limited to 'src/chainparams.h')
-rw-r--r--src/chainparams.h6
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
};
/**