aboutsummaryrefslogtreecommitdiff
path: root/src/amount.h
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/amount.h
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/amount.h')
-rw-r--r--src/amount.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/amount.h b/src/amount.h
index 02d61fc9b..b80bcd1b2 100644
--- a/src/amount.h
+++ b/src/amount.h
@@ -44,7 +44,6 @@ public:
explicit CFeeRate(const CAmount& _nSatoshisPerK): nSatoshisPerK(_nSatoshisPerK) { }
/** Constructor for a fee rate in satoshis per kB. The size in bytes must not exceed (2^63 - 1)*/
CFeeRate(const CAmount& nFeePaid, size_t nBytes);
- CFeeRate(const CFeeRate& other) { nSatoshisPerK = other.nSatoshisPerK; }
/**
* Return the wallet fee in koinus for the given size in bytes.
*/