diff options
Diffstat (limited to 'src/kernel')
-rw-r--r-- | src/kernel/chainparams.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/chainparams.h b/src/kernel/chainparams.h index 5d45a1fa9c..9cf7fa87f3 100644 --- a/src/kernel/chainparams.h +++ b/src/kernel/chainparams.h @@ -54,7 +54,7 @@ struct AssumeutxoData { //! //! We need to hardcode the value here because this is computed cumulatively using block data, //! which we do not necessarily have at the time of snapshot load. - unsigned int nChainTx; + uint64_t nChainTx; //! The hash of the base block for this snapshot. Used to refer to assumeutxo data //! prior to having a loaded blockindex. @@ -69,7 +69,7 @@ struct AssumeutxoData { */ struct ChainTxData { int64_t nTime; //!< UNIX timestamp of last known number of transactions - int64_t nTxCount; //!< total number of transactions between genesis and that timestamp + uint64_t nTxCount; //!< total number of transactions between genesis and that timestamp double dTxRate; //!< estimated number of transactions per second after that timestamp }; |