mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-24 05:24:34 +00:00
CTxMemPool: add helper methods, to reduce global mempool.mapTx accesses
This commit is contained in:
parent
d01903e751
commit
ca4c4c53a8
24
src/main.cpp
24
src/main.cpp
@ -702,7 +702,7 @@ bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
|
|||||||
if (!tx.IsCoinBase())
|
if (!tx.IsCoinBase())
|
||||||
{
|
{
|
||||||
uint256 hash = tx.GetHash();
|
uint256 hash = tx.GetHash();
|
||||||
if (!mempool.mapTx.count(hash) && !txdb.ContainsTx(hash))
|
if (!mempool.exists(hash) && !txdb.ContainsTx(hash))
|
||||||
tx.AcceptToMemoryPool(txdb, fCheckInputs);
|
tx.AcceptToMemoryPool(txdb, fCheckInputs);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1018,9 +1018,9 @@ bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTes
|
|||||||
// Get prev tx from single transactions in memory
|
// Get prev tx from single transactions in memory
|
||||||
{
|
{
|
||||||
LOCK(mempool.cs);
|
LOCK(mempool.cs);
|
||||||
if (!mempool.mapTx.count(prevout.hash))
|
if (!mempool.exists(prevout.hash))
|
||||||
return error("FetchInputs() : %s mempool.mapTx prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
|
return error("FetchInputs() : %s mempool Tx prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
|
||||||
txPrev = mempool.mapTx[prevout.hash];
|
txPrev = mempool.lookup(prevout.hash);
|
||||||
}
|
}
|
||||||
if (!fFound)
|
if (!fFound)
|
||||||
txindex.vSpent.resize(txPrev.vout.size());
|
txindex.vSpent.resize(txPrev.vout.size());
|
||||||
@ -1189,9 +1189,9 @@ bool CTransaction::ClientConnectInputs()
|
|||||||
{
|
{
|
||||||
// Get prev tx from single transactions in memory
|
// Get prev tx from single transactions in memory
|
||||||
COutPoint prevout = vin[i].prevout;
|
COutPoint prevout = vin[i].prevout;
|
||||||
if (!mempool.mapTx.count(prevout.hash))
|
if (!mempool.exists(prevout.hash))
|
||||||
return false;
|
return false;
|
||||||
CTransaction& txPrev = mempool.mapTx[prevout.hash];
|
CTransaction& txPrev = mempool.lookup(prevout.hash);
|
||||||
|
|
||||||
if (prevout.n >= txPrev.vout.size())
|
if (prevout.n >= txPrev.vout.size())
|
||||||
return false;
|
return false;
|
||||||
@ -2136,8 +2136,16 @@ bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
|
|||||||
{
|
{
|
||||||
switch (inv.type)
|
switch (inv.type)
|
||||||
{
|
{
|
||||||
case MSG_TX: return mempool.mapTx.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
|
case MSG_TX:
|
||||||
case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
|
{
|
||||||
|
LOCK(mempool.cs);
|
||||||
|
return mempool.exists(inv.hash) ||
|
||||||
|
mapOrphanTransactions.count(inv.hash) ||
|
||||||
|
txdb.ContainsTx(inv.hash);
|
||||||
|
}
|
||||||
|
|
||||||
|
case MSG_BLOCK:
|
||||||
|
return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
|
||||||
}
|
}
|
||||||
// Don't know what it is, just say we already got one
|
// Don't know what it is, just say we already got one
|
||||||
return true;
|
return true;
|
||||||
|
10
src/main.h
10
src/main.h
@ -1621,6 +1621,16 @@ public:
|
|||||||
LOCK(cs);
|
LOCK(cs);
|
||||||
return mapTx.size();
|
return mapTx.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool exists(uint256 hash)
|
||||||
|
{
|
||||||
|
return (mapTx.count(hash) != 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
CTransaction& lookup(uint256 hash)
|
||||||
|
{
|
||||||
|
return mapTx[hash];
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
extern CTxMemPool mempool;
|
extern CTxMemPool mempool;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user