Shorten variable names and switch to tx/s

This commit is contained in:
Pieter Wuille
2017-01-04 07:35:39 -08:00
parent 6dd81169fc
commit e356d9a758
3 changed files with 8 additions and 8 deletions

View File

@@ -31,9 +31,9 @@ struct CCheckpointData {
};
struct ChainTxData {
int64_t nTimeLastCheckpoint;
int64_t nTransactionsLastCheckpoint;
double fTransactionsPerDay;
int64_t nTime;
int64_t nTxCount;
double dTxRate;
};
/**