diff options
Diffstat (limited to 'src/amount.cpp')
| -rw-r--r-- | src/amount.cpp | 33 |
1 files changed, 25 insertions, 8 deletions
diff --git a/src/amount.cpp b/src/amount.cpp index c2210764b..176c0be85 100644 --- a/src/amount.cpp +++ b/src/amount.cpp @@ -1,5 +1,5 @@ // Copyright (c) 2009-2010 Satoshi Nakamoto -// Copyright (c) 2009-2014 The Bitcoin Core developers +// Copyright (c) 2009-2016 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -7,25 +7,42 @@ #include "tinyformat.h" -CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nSize) +const std::string CURRENCY_UNIT = "DOGE"; + +CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nBytes_) { + assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max())); + int64_t nSize = int64_t(nBytes_); + if (nSize > 0) - nSatoshisPerK = nFeePaid*1000/nSize; + nSatoshisPerK = nFeePaid * 1000 / nSize; else nSatoshisPerK = 0; } -CAmount CFeeRate::GetFee(size_t nSize) const +CAmount CFeeRate::GetFee(size_t nBytes_) const { - CAmount nFee = nSatoshisPerK*nSize / 1000; + 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 + if (nSize % 1000 > 0) { + nSize = nSize + 1000 - (nSize % 1000); + } + + CAmount nFee = nSatoshisPerK * nSize / 1000; - if (nFee == 0 && nSatoshisPerK > 0) - nFee = nSatoshisPerK; + if (nFee == 0 && nSize != 0) { + if (nSatoshisPerK > 0) + nFee = CAmount(1); + if (nSatoshisPerK < 0) + nFee = CAmount(-1); + } return nFee; } std::string CFeeRate::ToString() const { - return strprintf("%d.%08d DOGE/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN); + return strprintf("%d.%08d %s/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN, CURRENCY_UNIT); } |