2019-03-28 11:41:01 -04:00
|
|
|
// Copyright (c) 2010 Satoshi Nakamoto
|
2020-12-31 09:48:25 +01:00
|
|
|
// Copyright (c) 2009-2020 The Bitcoin Core developers
|
2019-03-28 11:41:01 -04:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_NODE_COINSTATS_H
|
|
|
|
#define BITCOIN_NODE_COINSTATS_H
|
|
|
|
|
|
|
|
#include <amount.h>
|
2020-01-24 18:56:47 +01:00
|
|
|
#include <chain.h>
|
|
|
|
#include <coins.h>
|
|
|
|
#include <streams.h>
|
2019-03-28 11:41:01 -04:00
|
|
|
#include <uint256.h>
|
|
|
|
|
|
|
|
#include <cstdint>
|
2020-05-22 16:09:34 -04:00
|
|
|
#include <functional>
|
2019-03-28 11:41:01 -04:00
|
|
|
|
2021-03-17 16:53:54 -04:00
|
|
|
class BlockManager;
|
2019-03-28 11:41:01 -04:00
|
|
|
class CCoinsView;
|
|
|
|
|
2020-06-02 23:52:34 +02:00
|
|
|
enum class CoinStatsHashType {
|
|
|
|
HASH_SERIALIZED,
|
2020-06-02 23:55:32 +02:00
|
|
|
MUHASH,
|
2020-06-02 23:56:28 +02:00
|
|
|
NONE,
|
2020-06-02 23:52:34 +02:00
|
|
|
};
|
|
|
|
|
2019-03-28 11:41:01 -04:00
|
|
|
struct CCoinsStats
|
|
|
|
{
|
2021-02-21 23:24:28 +01:00
|
|
|
CoinStatsHashType m_hash_type;
|
2019-03-28 12:09:06 -04:00
|
|
|
int nHeight{0};
|
|
|
|
uint256 hashBlock{};
|
|
|
|
uint64_t nTransactions{0};
|
|
|
|
uint64_t nTransactionOutputs{0};
|
|
|
|
uint64_t nBogoSize{0};
|
|
|
|
uint256 hashSerialized{};
|
|
|
|
uint64_t nDiskSize{0};
|
|
|
|
CAmount nTotalAmount{0};
|
|
|
|
|
|
|
|
//! The number of coins contained.
|
|
|
|
uint64_t coins_count{0};
|
2021-02-21 23:24:28 +01:00
|
|
|
|
|
|
|
CCoinsStats(CoinStatsHashType hash_type) : m_hash_type(hash_type) {}
|
2019-03-28 11:41:01 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
//! Calculate statistics about the unspent transaction output set
|
2021-02-21 23:24:28 +01:00
|
|
|
bool GetUTXOStats(CCoinsView* view, BlockManager& blockman, CCoinsStats& stats, const std::function<void()>& interruption_point = {});
|
2019-03-28 11:41:01 -04:00
|
|
|
|
2020-01-24 18:56:47 +01:00
|
|
|
uint64_t GetBogoSize(const CScript& script_pub_key);
|
|
|
|
|
|
|
|
CDataStream TxOutSer(const COutPoint& outpoint, const Coin& coin);
|
|
|
|
|
2019-03-28 11:41:01 -04:00
|
|
|
#endif // BITCOIN_NODE_COINSTATS_H
|