diff options
Diffstat (limited to 'src/amount.cpp')
| -rw-r--r-- | src/amount.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amount.cpp b/src/amount.cpp index aa6bf943e..6576a2708 100644 --- a/src/amount.cpp +++ b/src/amount.cpp @@ -25,7 +25,7 @@ CAmount CFeeRate::GetFee(size_t nBytes_) const assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max())); int64_t nSize = int64_t(nBytes_); - // Dogecoin: Round up to the nearest 1000 bytes so we get round tx fees + // Discoin: Round up to the nearest 1000 bytes so we get round tx fees if (nSize % 1000 > 0) { nSize = nSize + 1000 - (nSize % 1000); } @@ -33,7 +33,7 @@ CAmount CFeeRate::GetFee(size_t nBytes_) const return GetRelayFee(nSize); } -// Dogecoin: Specifically for 1.14.4 we lower accepted relay fees by removing rounding, +// Discoin: Specifically for 1.14.4 we lower accepted relay fees by removing rounding, // in 1.14.5 we should unify the GetFee() functions again. CAmount CFeeRate::GetRelayFee(size_t nBytes_) const { |