From 381a46e38fa9262c868e5fee9ed0d1f71af4059e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Tim=C3=B3n?= Date: Thu, 31 Mar 2016 23:30:17 +0200 Subject: Consensus: Policy: MOVEONLY: Move CFeeRate out of the consensus module ...from amount.o to policy/feerate.o Policy, because it moves policy code to the policy directory (common module) --- src/amount.cpp | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 src/amount.cpp (limited to 'src/amount.cpp') diff --git a/src/amount.cpp b/src/amount.cpp deleted file mode 100644 index a5f6bc3cd..000000000 --- a/src/amount.cpp +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright (c) 2009-2010 Satoshi Nakamoto -// 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. - -#include "amount.h" - -#include "tinyformat.h" - -const std::string CURRENCY_UNIT = "BTC"; - -CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nBytes_) -{ - assert(nBytes_ <= uint64_t(std::numeric_limits::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::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); -} -- cgit v1.2.3