Bitcoin Core 28.99.0
P2P Digital Currency
transaction.cpp
Go to the documentation of this file.
1// Copyright (c) 2010 Satoshi Nakamoto
2// Copyright (c) 2009-2021 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
7#include <index/txindex.h>
8#include <net.h>
9#include <net_processing.h>
10#include <node/blockstorage.h>
11#include <node/context.h>
12#include <node/types.h>
13#include <txmempool.h>
14#include <validation.h>
15#include <validationinterface.h>
16#include <node/transaction.h>
17
18#include <future>
19
20namespace node {
21static TransactionError HandleATMPError(const TxValidationState& state, std::string& err_string_out)
22{
23 err_string_out = state.ToString();
24 if (state.IsInvalid()) {
27 }
29 } else {
31 }
32}
33
34TransactionError BroadcastTransaction(NodeContext& node, const CTransactionRef tx, std::string& err_string, const CAmount& max_tx_fee, bool relay, bool wait_callback)
35{
36 // BroadcastTransaction can be called by RPC or by the wallet.
37 // chainman, mempool and peerman are initialized before the RPC server and wallet are started
38 // and reset after the RPC sever and wallet are stopped.
39 assert(node.chainman);
40 assert(node.mempool);
41 assert(node.peerman);
42
43 std::promise<void> promise;
44 Txid txid = tx->GetHash();
45 uint256 wtxid = tx->GetWitnessHash();
46 bool callback_set = false;
47
48 {
50
51 // If the transaction is already confirmed in the chain, don't do anything
52 // and return early.
53 CCoinsViewCache &view = node.chainman->ActiveChainstate().CoinsTip();
54 for (size_t o = 0; o < tx->vout.size(); o++) {
55 const Coin& existingCoin = view.AccessCoin(COutPoint(txid, o));
56 // IsSpent doesn't mean the coin is spent, it means the output doesn't exist.
57 // So if the output does exist, then this transaction exists in the chain.
58 if (!existingCoin.IsSpent()) return TransactionError::ALREADY_IN_UTXO_SET;
59 }
60
61 if (auto mempool_tx = node.mempool->get(txid); mempool_tx) {
62 // There's already a transaction in the mempool with this txid. Don't
63 // try to submit this transaction to the mempool (since it'll be
64 // rejected as a TX_CONFLICT), but do attempt to reannounce the mempool
65 // transaction if relay=true.
66 //
67 // The mempool transaction may have the same or different witness (and
68 // wtxid) as this transaction. Use the mempool's wtxid for reannouncement.
69 wtxid = mempool_tx->GetWitnessHash();
70 } else {
71 // Transaction is not already in the mempool.
72 if (max_tx_fee > 0) {
73 // First, call ATMP with test_accept and check the fee. If ATMP
74 // fails here, return error immediately.
75 const MempoolAcceptResult result = node.chainman->ProcessTransaction(tx, /*test_accept=*/ true);
77 return HandleATMPError(result.m_state, err_string);
78 } else if (result.m_base_fees.value() > max_tx_fee) {
80 }
81 }
82 // Try to submit the transaction to the mempool.
83 const MempoolAcceptResult result = node.chainman->ProcessTransaction(tx, /*test_accept=*/ false);
85 return HandleATMPError(result.m_state, err_string);
86 }
87
88 // Transaction was accepted to the mempool.
89
90 if (relay) {
91 // the mempool tracks locally submitted transactions to make a
92 // best-effort of initial broadcast
93 node.mempool->AddUnbroadcastTx(txid);
94 }
95
96 if (wait_callback && node.validation_signals) {
97 // For transactions broadcast from outside the wallet, make sure
98 // that the wallet has been notified of the transaction before
99 // continuing.
100 //
101 // This prevents a race where a user might call sendrawtransaction
102 // with a transaction to/from their wallet, immediately call some
103 // wallet RPC, and get a stale result because callbacks have not
104 // yet been processed.
105 node.validation_signals->CallFunctionInValidationInterfaceQueue([&promise] {
106 promise.set_value();
107 });
108 callback_set = true;
109 }
110 }
111 } // cs_main
112
113 if (callback_set) {
114 // Wait until Validation Interface clients have been notified of the
115 // transaction entering the mempool.
116 promise.get_future().wait();
117 }
118
119 if (relay) {
120 node.peerman->RelayTransaction(txid, wtxid);
121 }
122
124}
125
126CTransactionRef GetTransaction(const CBlockIndex* const block_index, const CTxMemPool* const mempool, const uint256& hash, uint256& hashBlock, const BlockManager& blockman)
127{
128 if (mempool && !block_index) {
129 CTransactionRef ptx = mempool->get(hash);
130 if (ptx) return ptx;
131 }
132 if (g_txindex) {
134 uint256 block_hash;
135 if (g_txindex->FindTx(hash, block_hash, tx)) {
136 if (!block_index || block_index->GetBlockHash() == block_hash) {
137 // Don't return the transaction if the provided block hash doesn't match.
138 // The case where a transaction appears in multiple blocks (e.g. reorgs or
139 // BIP30) is handled by the block lookup below.
140 hashBlock = block_hash;
141 return tx;
142 }
143 }
144 }
145 if (block_index) {
146 CBlock block;
147 if (blockman.ReadBlockFromDisk(block, *block_index)) {
148 for (const auto& tx : block.vtx) {
149 if (tx->GetHash() == hash) {
150 hashBlock = block_index->GetBlockHash();
151 return tx;
152 }
153 }
154 }
155 }
156 return nullptr;
157}
158} // namespace node
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
Definition: block.h:69
std::vector< CTransactionRef > vtx
Definition: block.h:72
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:141
uint256 GetBlockHash() const
Definition: chain.h:243
CCoinsView that adds a memory cache for transactions to another CCoinsView.
Definition: coins.h:363
const Coin & AccessCoin(const COutPoint &output) const
Return a reference to Coin in the cache, or coinEmpty if not found.
Definition: coins.cpp:154
An outpoint - a combination of a transaction hash and an index n into its vout.
Definition: transaction.h:29
CTxMemPool stores valid-according-to-the-current-best-chain transactions that may be included in the ...
Definition: txmempool.h:304
CTransactionRef get(const uint256 &hash) const
Definition: txmempool.cpp:884
A UTXO entry.
Definition: coins.h:33
bool IsSpent() const
Either this coin never existed (see e.g.
Definition: coins.h:81
Result GetResult() const
Definition: validation.h:109
std::string ToString() const
Definition: validation.h:112
bool IsInvalid() const
Definition: validation.h:107
Maintains a tree of blocks (stored in m_block_index) which is consulted to determine where the most-w...
Definition: blockstorage.h:136
bool ReadBlockFromDisk(CBlock &block, const FlatFilePos &pos) const
Functions for disk access for blocks.
256-bit opaque blob.
Definition: uint256.h:190
@ TX_MISSING_INPUTS
transaction was missing some of its inputs
RecursiveMutex cs_main
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
Definition: cs_main.cpp:8
Definition: messages.h:20
TransactionError
Definition: types.h:20
TransactionError BroadcastTransaction(NodeContext &node, const CTransactionRef tx, std::string &err_string, const CAmount &max_tx_fee, bool relay, bool wait_callback)
Submit a transaction to the mempool and (optionally) relay it to all P2P peers.
Definition: transaction.cpp:34
CTransactionRef GetTransaction(const CBlockIndex *const block_index, const CTxMemPool *const mempool, const uint256 &hash, uint256 &hashBlock, const BlockManager &blockman)
Return transaction with a given hash.
static TransactionError HandleATMPError(const TxValidationState &state, std::string &err_string_out)
Definition: transaction.cpp:21
is a home for public enum and struct type definitions that are used by internally by node code,...
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:423
Validation result for a transaction evaluated by MemPoolAccept (single or package).
Definition: validation.h:123
const ResultType m_result_type
Result type.
Definition: validation.h:132
const std::optional< CAmount > m_base_fees
Raw base fees in satoshis.
Definition: validation.h:142
const TxValidationState m_state
Contains information about why the transaction failed.
Definition: validation.h:135
NodeContext struct containing references to chain state and connection state.
Definition: context.h:56
#define LOCK(cs)
Definition: sync.h:257
std::unique_ptr< TxIndex > g_txindex
The global transaction index, used in GetTransaction. May be null.
Definition: txindex.cpp:16
assert(!tx.IsCoinBase())