mirror of
https://github.com/dogecoin/dogecoin.git
synced 2026-01-31 10:30:52 +00:00
adds a line when no copyright for Dogecoin Core Developers exists but the file has been edited by us, to the last year found in git log, or extends the year range on an existing line when a file has been modified since the year previously listed. Excludes subtrees.
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2016 The Bitcoin Core developers
|
|
// Copyright (c) 2021-2022 The Dogecoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include "amount.h"
|
|
|
|
#include "tinyformat.h"
|
|
|
|
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;
|
|
else
|
|
nSatoshisPerK = 0;
|
|
}
|
|
|
|
CAmount CFeeRate::GetFee(size_t nBytes_) const
|
|
{
|
|
assert(nBytes_ <= uint64_t(std::numeric_limits<int64_t>::max()));
|
|
int64_t nSize = int64_t(nBytes_);
|
|
|
|
CAmount nFee = nSatoshisPerK * nSize / 1000;
|
|
|
|
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 %s/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN, CURRENCY_UNIT);
|
|
}
|