![]() |
Bitcoin Core 29.99.0
P2P Digital Currency
|
#include <attributes.h>
#include <uint256.h>
#include <util/types.h>
#include <compare>
#include <concepts>
#include <tuple>
#include <variant>
Go to the source code of this file.
Classes | |
class | transaction_identifier< has_witness > |
transaction_identifier represents the two canonical transaction identifier types (txid, wtxid). More... | |
class | GenTxid |
Concepts | |
concept | TxidOrWtxid |
Typedefs | |
using | Txid = transaction_identifier< false > |
Txid commits to all transaction fields except the witness. More... | |
using | Wtxid = transaction_identifier< true > |
Wtxid commits to all transaction fields including the witness. More... | |
using Txid = transaction_identifier<false> |
Txid commits to all transaction fields except the witness.
Definition at line 68 of file transaction_identifier.h.
using Wtxid = transaction_identifier<true> |
Wtxid commits to all transaction fields including the witness.
Definition at line 70 of file transaction_identifier.h.