aboutsummaryrefslogtreecommitdiff
path: root/src/chainparams.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2017-01-04 07:35:39 -0800
committerPieter Wuille <pieter.wuille@gmail.com>2017-01-11 08:21:37 -0800
commite356d9a758fff44841c0a630ef6b048de05e53f0 (patch)
tree39ef7e8da308218dfe54b1c458e1d743cea933b5 /src/chainparams.h
parent6dd81169fc33f0c9720afe0b9b52ed4539e59580 (diff)
downloadbitcoin-e356d9a758fff44841c0a630ef6b048de05e53f0.tar.xz
Shorten variable names and switch to tx/s
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 8dbde9fc24..db524e8f8e 100644
--- a/src/chainparams.h
+++ b/src/chainparams.h
@@ -31,9 +31,9 @@ struct CCheckpointData {
};
struct ChainTxData {
- int64_t nTimeLastCheckpoint;
- int64_t nTransactionsLastCheckpoint;
- double fTransactionsPerDay;
+ int64_t nTime;
+ int64_t nTxCount;
+ double dTxRate;
};
/**