aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeha Narula <narula@gmail.com>2020-09-13 19:29:50 -0400
committerNeha Narula <narula@gmail.com>2020-10-14 10:08:37 -0400
commit8803aee66813d27ddbdfce937ab9c35f8f7c35bc (patch)
tree9f5864917c7b147c9a4e0bf0f19e64dc079b3e4a
parent9c47cb29f9f525ee58acc629825a97075156d764 (diff)
downloadbitcoin-8803aee66813d27ddbdfce937ab9c35f8f7c35bc.tar.xz
Move m_orphan_work_set to net_processing
-rw-r--r--src/net.h2
-rw-r--r--src/net_processing.cpp18
2 files changed, 13 insertions, 7 deletions
diff --git a/src/net.h b/src/net.h
index c357d33165..da82fe9a2e 100644
--- a/src/net.h
+++ b/src/net.h
@@ -1042,8 +1042,6 @@ public:
// Whether a ping is requested.
std::atomic<bool> fPingQueued{false};
- std::set<uint256> m_orphan_work_set;
-
CNode(NodeId id, ServiceFlags nLocalServicesIn, int nMyStartingHeightIn, SOCKET hSocketIn, const CAddress &addrIn, uint64_t nKeyedNetGroupIn, uint64_t nLocalHostNonceIn, const CAddress &addrBindIn, const std::string &addrNameIn, ConnectionType conn_type_in, bool inbound_onion = false);
~CNode();
CNode(const CNode&) = delete;
diff --git a/src/net_processing.cpp b/src/net_processing.cpp
index 7b5805c93e..ab3c323b0f 100644
--- a/src/net_processing.cpp
+++ b/src/net_processing.cpp
@@ -512,6 +512,9 @@ struct Peer {
/** Whether this peer should be disconnected and marked as discouraged (unless it has the noban permission). */
bool m_should_discourage GUARDED_BY(m_misbehavior_mutex){false};
+ /** Set of txids to reconsider once their parent transactions have been accepted **/
+ std::set<uint256> m_orphan_work_set;
+
Peer(NodeId id) : m_id(id) {}
};
@@ -2363,6 +2366,8 @@ void PeerManager::ProcessMessage(CNode& pfrom, const std::string& msg_type, CDat
return;
}
+ PeerRef peer = GetPeerRef(pfrom.GetId());
+ if (peer == nullptr) return;
if (msg_type == NetMsgType::VERSION) {
// Each connection can only send one version message
@@ -3052,7 +3057,7 @@ void PeerManager::ProcessMessage(CNode& pfrom, const std::string& msg_type, CDat
auto it_by_prev = mapOrphanTransactionsByPrev.find(COutPoint(txid, i));
if (it_by_prev != mapOrphanTransactionsByPrev.end()) {
for (const auto& elem : it_by_prev->second) {
- pfrom.m_orphan_work_set.insert(elem->first);
+ peer->m_orphan_work_set.insert(elem->first);
}
}
}
@@ -3069,7 +3074,7 @@ void PeerManager::ProcessMessage(CNode& pfrom, const std::string& msg_type, CDat
}
// Recursively process any orphan transactions that depended on this one
- ProcessOrphanTx(pfrom.m_orphan_work_set);
+ ProcessOrphanTx(peer->m_orphan_work_set);
}
else if (state.GetResult() == TxValidationResult::TX_MISSING_INPUTS)
{
@@ -3865,12 +3870,15 @@ bool PeerManager::ProcessMessages(CNode* pfrom, std::atomic<bool>& interruptMsgP
{
bool fMoreWork = false;
+ PeerRef peer = GetPeerRef(pfrom->GetId());
+ if (peer == nullptr) return false;
+
if (!pfrom->vRecvGetData.empty())
ProcessGetData(*pfrom, m_chainparams, m_connman, m_mempool, interruptMsgProc);
- if (!pfrom->m_orphan_work_set.empty()) {
+ if (!peer->m_orphan_work_set.empty()) {
LOCK2(cs_main, g_cs_orphans);
- ProcessOrphanTx(pfrom->m_orphan_work_set);
+ ProcessOrphanTx(peer->m_orphan_work_set);
}
if (pfrom->fDisconnect)
@@ -3879,7 +3887,7 @@ bool PeerManager::ProcessMessages(CNode* pfrom, std::atomic<bool>& interruptMsgP
// this maintains the order of responses
// and prevents vRecvGetData to grow unbounded
if (!pfrom->vRecvGetData.empty()) return true;
- if (!pfrom->m_orphan_work_set.empty()) return true;
+ if (!peer->m_orphan_work_set.empty()) return true;
// Don't bother if send buffer is too full to respond anyway
if (pfrom->fPauseSend)