From fa477d32eefcc3dd2f06b452066290d9936d8c5d Mon Sep 17 00:00:00 2001 From: MacroFake Date: Thu, 21 Jul 2022 16:52:14 +0200 Subject: Remove ::GetVirtualTransactionSize() alias Each alias is only used in one place. --- src/txmempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/txmempool.cpp') diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 4af4ca0851..37c6c62ea4 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -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, -- cgit v1.2.3