mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-16 16:32:47 +00:00
-BEGIN VERIFY SCRIPT- sed --in-place --regexp-extended \ 's;( 20[0-2][0-9])(-20[0-2][0-9])? The Bitcoin Core developers;\1-present The Bitcoin Core developers;g' \ $( git grep -l 'The Bitcoin Core developers' -- ':(exclude)COPYING' ':(exclude)src/ipc/libmultiprocess' ':(exclude)src/minisketch' ) -END VERIFY SCRIPT-
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
// Copyright (c) 2017-present The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_INDEX_TXINDEX_H
|
|
#define BITCOIN_INDEX_TXINDEX_H
|
|
|
|
#include <index/base.h>
|
|
#include <primitives/transaction.h>
|
|
|
|
#include <cstddef>
|
|
#include <memory>
|
|
|
|
class uint256;
|
|
namespace interfaces {
|
|
class Chain;
|
|
}
|
|
|
|
static constexpr bool DEFAULT_TXINDEX{false};
|
|
|
|
/**
|
|
* TxIndex is used to look up transactions included in the blockchain by hash.
|
|
* The index is written to a LevelDB database and records the filesystem
|
|
* location of each transaction by transaction hash.
|
|
*/
|
|
class TxIndex final : public BaseIndex
|
|
{
|
|
protected:
|
|
class DB;
|
|
|
|
private:
|
|
const std::unique_ptr<DB> m_db;
|
|
|
|
bool AllowPrune() const override { return false; }
|
|
|
|
protected:
|
|
bool CustomAppend(const interfaces::BlockInfo& block) override;
|
|
|
|
BaseIndex::DB& GetDB() const override;
|
|
|
|
public:
|
|
/// Constructs the index, which becomes available to be queried.
|
|
explicit TxIndex(std::unique_ptr<interfaces::Chain> chain, size_t n_cache_size, bool f_memory = false, bool f_wipe = false);
|
|
|
|
// Destructor is declared because this class contains a unique_ptr to an incomplete type.
|
|
virtual ~TxIndex() override;
|
|
|
|
/// Look up a transaction by hash.
|
|
///
|
|
/// @param[in] tx_hash The hash of the transaction to be returned.
|
|
/// @param[out] block_hash The hash of the block the transaction is found in.
|
|
/// @param[out] tx The transaction itself.
|
|
/// @return true if transaction is found, false otherwise
|
|
bool FindTx(const Txid& tx_hash, uint256& block_hash, CTransactionRef& tx) const;
|
|
};
|
|
|
|
/// The global transaction index, used in GetTransaction. May be null.
|
|
extern std::unique_ptr<TxIndex> g_txindex;
|
|
|
|
#endif // BITCOIN_INDEX_TXINDEX_H
|