Remove ::GetVirtualTransactionSize() alias

Each alias is only used in one place.
This commit is contained in:
MacroFake
2022-07-21 16:52:14 +02:00
parent fa2f6c1a61
commit fa477d32ee
4 changed files with 2 additions and 21 deletions

View File

@@ -106,7 +106,7 @@ void CTxMemPoolEntry::UpdateLockPoints(const LockPoints& lp)
size_t CTxMemPoolEntry::GetTxSize() const
{
return GetVirtualTransactionSize(nTxWeight, sigOpCost);
return GetVirtualTransactionSize(nTxWeight, sigOpCost, ::nBytesPerSigOp);
}
void CTxMemPool::UpdateForDescendants(txiter updateIt, cacheMap& cachedDescendants,