aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2021-08-30 20:01:17 +0100
committerGitHub <[email protected]>2021-08-30 20:01:17 +0100
commit97190c0ae660a2bd8f2aed6b132183c742afacbb (patch)
tree8a9dfa47e5f33a32ee67ada78dd385078f53b983 /src/txmempool.cpp
parentMerge pull request #2481 from chromatic/fix-freebsd-scrypt-compilation-gh2475 (diff)
parentRemove redundant explicitly defined copy ctors (diff)
downloaddiscoin-1.14.5-dev.tar.xz
discoin-1.14.5-dev.zip
Merge pull request #2497 from patricklodder/1.14-remove-redundant-copy-ctors1.14.5-dev
1.14: Remove redundant explicitly defined copy constructors
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp
index c6b679aec..bfb9e8519 100644
--- a/src/txmempool.cpp
+++ b/src/txmempool.cpp
@@ -45,11 +45,6 @@ CTxMemPoolEntry::CTxMemPoolEntry(const CTransactionRef& _tx, const CAmount& _nFe
nSigOpCostWithAncestors = sigOpCost;
}
-CTxMemPoolEntry::CTxMemPoolEntry(const CTxMemPoolEntry& other)
-{
- *this = other;
-}
-
double
CTxMemPoolEntry::GetPriority(unsigned int currentHeight) const
{