aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@gmail.com>2020-02-26 13:36:35 -0500
committerJohn Newbery <john@johnnewbery.com>2020-09-24 13:24:10 +0100
commite364b2a2d879e8d30ca9dbc578e4d169b41eb227 (patch)
tree36dcf99f7f53e15258f0d96ff14313839e0bcc97
parent879a3cf2c2367d51310204d21030f3b218582c30 (diff)
downloadbitcoin-e364b2a2d879e8d30ca9dbc578e4d169b41eb227.tar.xz
Rename AddInventoryKnown() to AddKnownTx()
-rw-r--r--src/net.h2
-rw-r--r--src/net_processing.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/net.h b/src/net.h
index ce8cbe947d..8822e4e35d 100644
--- a/src/net.h
+++ b/src/net.h
@@ -969,7 +969,7 @@ public:
}
- void AddInventoryKnown(const uint256& hash)
+ void AddKnownTx(const uint256& hash)
{
if (m_tx_relay != nullptr) {
LOCK(m_tx_relay->cs_tx_inventory);
diff --git a/src/net_processing.cpp b/src/net_processing.cpp
index 8893397e83..853c488bed 100644
--- a/src/net_processing.cpp
+++ b/src/net_processing.cpp
@@ -2368,7 +2368,7 @@ bool ProcessMessage(CNode* pfrom, const std::string& msg_type, CDataStream& vRec
best_block = &inv.hash;
}
} else {
- pfrom->AddInventoryKnown(inv.hash);
+ pfrom->AddKnownTx(inv.hash);
if (fBlocksOnly) {
LogPrint(BCLog::NET, "transaction (%s) inv sent in violation of protocol, disconnecting peer=%d\n", inv.hash.ToString(), pfrom->GetId());
pfrom->fDisconnect = true;
@@ -2615,14 +2615,14 @@ bool ProcessMessage(CNode* pfrom, const std::string& msg_type, CDataStream& vRec
CNodeState* nodestate = State(pfrom->GetId());
const uint256& hash = nodestate->m_wtxid_relay ? wtxid : txid;
- pfrom->AddInventoryKnown(hash);
+ pfrom->AddKnownTx(hash);
if (nodestate->m_wtxid_relay && txid != wtxid) {
// Insert txid into filterInventoryKnown, even for
// wtxidrelay peers. This prevents re-adding of
// unconfirmed parents to the recently_announced
// filter, when a child tx is requested. See
// ProcessGetData().
- pfrom->AddInventoryKnown(txid);
+ pfrom->AddKnownTx(txid);
}
TxValidationState state;
@@ -2689,7 +2689,7 @@ bool ProcessMessage(CNode* pfrom, const std::string& msg_type, CDataStream& vRec
// Eventually we should replace this with an improved
// protocol for getting all unconfirmed parents.
CInv _inv(MSG_TX | nFetchFlags, txin.prevout.hash);
- pfrom->AddInventoryKnown(txin.prevout.hash);
+ pfrom->AddKnownTx(txin.prevout.hash);
if (!AlreadyHave(_inv, mempool)) RequestTx(State(pfrom->GetId()), _inv.hash, current_time);
}
}