![]() |
Bitcoin Core
0.21.1
P2P Digital Currency
|
#include <consensus/params.h>#include <net.h>#include <sync.h>#include <txrequest.h>#include <validationinterface.h>Go to the source code of this file.
Classes | |
| class | PeerManager |
| struct | CNodeStateStats |
Functions | |
| bool | GetNodeStateStats (NodeId nodeid, CNodeStateStats &stats) |
| Get statistics from node state. More... | |
| 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 |
| 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... | |
| bool GetNodeStateStats | ( | NodeId | nodeid, |
| CNodeStateStats & | stats | ||
| ) |
Get statistics from node state.
Relay transaction to every node.
| 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 129 of file validation.cpp.
|
static |
Default number of orphan+recently-replaced txn to keep around for block reconstruction.
Definition at line 29 of file net_processing.h.
|
static |
Default for -maxorphantx, maximum number of orphan transactions kept in memory.
Definition at line 27 of file net_processing.h.
|
static |
Definition at line 31 of file net_processing.h.
|
static |
Definition at line 30 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 33 of file net_processing.h.
| RecursiveMutex g_cs_orphans |
1.8.8