![]() |
Bitcoin Core
21.99.0
P2P Digital Currency
|
Go to the source code of this file.
Classes | |
struct | CNodeStateStats |
class | PeerManager |
Functions | |
void | RelayTransaction (const uint256 &txid, const uint256 &wtxid, const CConnman &connman) EXCLUSIVE_LOCKS_REQUIRED(cs_main) |
Relay transaction to every node. More... | |
Variables | |
RecursiveMutex | cs_main |
Mutex to guard access to validation specific variables, such as reading or changing the chainstate. More... | |
RecursiveMutex | g_cs_orphans |
Guards orphan transactions and extra txs for compact blocks. More... | |
static const unsigned int | DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100 |
Default for -maxorphantx, maximum number of orphan transactions kept in memory. More... | |
static const unsigned int | DEFAULT_BLOCK_RECONSTRUCTION_EXTRA_TXN = 100 |
Default number of orphan+recently-replaced txn to keep around for block reconstruction. More... | |
static const bool | DEFAULT_PEERBLOOMFILTERS = false |
static const bool | DEFAULT_PEERBLOCKFILTERS = false |
static const int | DISCOURAGEMENT_THRESHOLD {100} |
Threshold for marking a node to be discouraged, e.g. More... | |
Relay transaction to every node.
Definition at line 1601 of file net_processing.cpp.
RecursiveMutex cs_main |
Mutex to guard access to validation specific variables, such as reading or changing the chainstate.
This may also need to be locked when updating the transaction pool, e.g. on AcceptToMemoryPool. See CTxMemPool::cs comment for details.
The transaction pool has a separate lock to allow reading from it and the chainstate at the same time.
Definition at line 128 of file validation.cpp.
|
static |
Default number of orphan+recently-replaced txn to keep around for block reconstruction.
Definition at line 23 of file net_processing.h.
|
static |
Default for -maxorphantx, maximum number of orphan transactions kept in memory.
Definition at line 21 of file net_processing.h.
|
static |
Definition at line 25 of file net_processing.h.
|
static |
Definition at line 24 of file net_processing.h.
|
static |
Threshold for marking a node to be discouraged, e.g.
disconnected and added to the discouragement filter.
Definition at line 27 of file net_processing.h.
RecursiveMutex g_cs_orphans |
Guards orphan transactions and extra txs for compact blocks.
Definition at line 160 of file net_processing.cpp.