diff options
| author | Pieter Wuille <[email protected]> | 2017-01-04 07:35:39 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2017-01-11 08:21:37 -0800 |
| commit | e356d9a758fff44841c0a630ef6b048de05e53f0 (patch) | |
| tree | 39ef7e8da308218dfe54b1c458e1d743cea933b5 /src/chainparams.h | |
| parent | Remove SIGCHECK_VERIFICATION_FACTOR (diff) | |
| download | discoin-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.h | 6 |
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; }; /** |