aboutsummaryrefslogtreecommitdiff
path: root/src/chainparams.h
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2017-01-04 07:35:39 -0800
committerPieter Wuille <[email protected]>2017-01-11 08:21:37 -0800
commite356d9a758fff44841c0a630ef6b048de05e53f0 (patch)
tree39ef7e8da308218dfe54b1c458e1d743cea933b5 /src/chainparams.h
parentRemove SIGCHECK_VERIFICATION_FACTOR (diff)
downloaddiscoin-e356d9a758fff44841c0a630ef6b048de05e53f0.tar.xz
discoin-e356d9a758fff44841c0a630ef6b048de05e53f0.zip
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 8dbde9fc2..db524e8f8 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;
};
/**