mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 15:04:44 +01:00
Add dev doc to CCoinsStats::m_hash_type and make it const
This commit is contained in:
parent
faff051560
commit
fa526d8fb6
1 changed files with 4 additions and 3 deletions
|
@ -24,9 +24,10 @@ enum class CoinStatsHashType {
|
|||
NONE,
|
||||
};
|
||||
|
||||
struct CCoinsStats
|
||||
{
|
||||
CoinStatsHashType m_hash_type;
|
||||
struct CCoinsStats {
|
||||
//! Which hash type to use
|
||||
const CoinStatsHashType m_hash_type;
|
||||
|
||||
int nHeight{0};
|
||||
uint256 hashBlock{};
|
||||
uint64_t nTransactions{0};
|
||||
|
|
Loading…
Add table
Reference in a new issue