From e64843ced509c24f783276d4cc0f2f26c9d527f2 Mon Sep 17 00:00:00 2001 From: Tomo Ueda Date: Thu, 2 Sep 2021 12:55:18 -0700 Subject: really s/Doge/Dis/g this time --- src/amount.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/amount.cpp') 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::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 { -- cgit v1.2.3