2014-10-23 02:05:11 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2015-12-13 17:58:29 +01:00
|
|
|
// Copyright (c) 2009-2015 The Bitcoin Core developers
|
2014-10-23 02:05:11 +02:00
|
|
|
// 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"
|
|
|
|
|
2015-08-01 21:15:23 +02:00
|
|
|
const std::string CURRENCY_UNIT = "BTC";
|
|
|
|
|
2014-10-23 02:05:11 +02:00
|
|
|
CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nSize)
|
|
|
|
{
|
|
|
|
if (nSize > 0)
|
|
|
|
nSatoshisPerK = nFeePaid*1000/nSize;
|
|
|
|
else
|
|
|
|
nSatoshisPerK = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
CAmount CFeeRate::GetFee(size_t nSize) const
|
|
|
|
{
|
|
|
|
CAmount nFee = nSatoshisPerK*nSize / 1000;
|
|
|
|
|
|
|
|
if (nFee == 0 && nSatoshisPerK > 0)
|
|
|
|
nFee = nSatoshisPerK;
|
|
|
|
|
|
|
|
return nFee;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string CFeeRate::ToString() const
|
|
|
|
{
|
2015-08-01 21:15:23 +02:00
|
|
|
return strprintf("%d.%08d %s/kB", nSatoshisPerK / COIN, nSatoshisPerK % COIN, CURRENCY_UNIT);
|
2014-10-23 02:05:11 +02:00
|
|
|
}
|