diff options
author | MacroFake <falke.marco@gmail.com> | 2022-07-21 16:52:14 +0200 |
---|---|---|
committer | MacroFake <falke.marco@gmail.com> | 2022-08-02 15:27:20 +0200 |
commit | fa477d32eefcc3dd2f06b452066290d9936d8c5d (patch) | |
tree | 4cffc18bae9b48a17213ec50b0f9ef631e1d6cbb /src/txmempool.cpp | |
parent | fa2f6c1a611dffe5a3f63fe1b453f1dd420371b1 (diff) |
Remove ::GetVirtualTransactionSize() alias
Each alias is only used in one place.
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r-- | src/txmempool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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, |