Bitcoin ABC 0.26.3
P2P Digital Currency
|
#include <index/coinstatsindex.h>
#include <chainparams.h>
#include <coins.h>
#include <common/args.h>
#include <consensus/amount.h>
#include <crypto/muhash.h>
#include <logging.h>
#include <node/blockstorage.h>
#include <primitives/blockhash.h>
#include <serialize.h>
#include <txdb.h>
#include <undo.h>
#include <util/check.h>
#include <validation.h>
Go to the source code of this file.
Functions | |
static bool | CopyHeightIndexToHashIndex (CDBIterator &db_it, CDBBatch &batch, const std::string &index_name, int start_height, int stop_height) |
static bool | LookUpOne (const CDBWrapper &db, const CBlockIndex *block_index, DBVal &result) |
Variables | |
static constexpr uint8_t | DB_BLOCK_HASH {'s'} |
static constexpr uint8_t | DB_BLOCK_HEIGHT {'t'} |
static constexpr uint8_t | DB_MUHASH {'M'} |
std::unique_ptr< CoinStatsIndex > | g_coin_stats_index |
The global UTXO set hash object. | |
|
static |
Definition at line 323 of file coinstatsindex.cpp.
Definition at line 25 of file coinstatsindex.cpp.
Definition at line 26 of file coinstatsindex.cpp.
Definition at line 27 of file coinstatsindex.cpp.
std::unique_ptr<CoinStatsIndex> g_coin_stats_index |
The global UTXO set hash object.
Definition at line 102 of file coinstatsindex.cpp.