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
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
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,