diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:55:18 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:55:18 -0700 |
| commit | e64843ced509c24f783276d4cc0f2f26c9d527f2 (patch) | |
| tree | 7956d4ea416c5b3a531dbc6f356e1c9a643d9690 /src/amount.cpp | |
| parent | really s/doge/dis/g this time (diff) | |
| download | discoin-e64843ced509c24f783276d4cc0f2f26c9d527f2.tar.xz discoin-e64843ced509c24f783276d4cc0f2f26c9d527f2.zip | |
really s/Doge/Dis/g this time
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 { |