LCOV - code coverage report
Current view: top level - src/policy - feerate.cpp (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 100.0 % 17 17
Test Date: 2024-08-28 04:44:32 Functions: 100.0 % 3 3
Branches: 90.0 % 10 9

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :             : // Copyright (c) 2009-2022 The Bitcoin Core developers
       3                 :             : // Distributed under the MIT software license, see the accompanying
       4                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       5                 :             : 
       6                 :             : #include <consensus/amount.h>
       7                 :             : #include <policy/feerate.h>
       8                 :             : #include <tinyformat.h>
       9                 :             : 
      10                 :             : #include <cmath>
      11                 :             : 
      12                 :       49317 : CFeeRate::CFeeRate(const CAmount& nFeePaid, uint32_t num_bytes)
      13                 :             : {
      14                 :       49317 :     const int64_t nSize{num_bytes};
      15                 :             : 
      16         [ +  + ]:       49317 :     if (nSize > 0) {
      17                 :       49314 :         nSatoshisPerK = nFeePaid * 1000 / nSize;
      18                 :             :     } else {
      19                 :           3 :         nSatoshisPerK = 0;
      20                 :             :     }
      21                 :       49317 : }
      22                 :             : 
      23                 :       15130 : CAmount CFeeRate::GetFee(uint32_t num_bytes) const
      24                 :             : {
      25                 :       15130 :     const int64_t nSize{num_bytes};
      26                 :             : 
      27                 :             :     // Be explicit that we're converting from a double to int64_t (CAmount) here.
      28                 :             :     // We've previously had issues with the silent double->int64_t conversion.
      29                 :       15130 :     CAmount nFee{static_cast<CAmount>(std::ceil(nSatoshisPerK * nSize / 1000.0))};
      30                 :             : 
      31         [ +  + ]:       15130 :     if (nFee == 0 && nSize != 0) {
      32         [ -  + ]:       12432 :         if (nSatoshisPerK > 0) nFee = CAmount(1);
      33         [ +  + ]:       12432 :         if (nSatoshisPerK < 0) nFee = CAmount(-1);
      34                 :             :     }
      35                 :             : 
      36                 :       15130 :     return nFee;
      37                 :             : }
      38                 :             : 
      39                 :          40 : std::string CFeeRate::ToString(const FeeEstimateMode& fee_estimate_mode) const
      40                 :             : {
      41         [ +  + ]:          40 :     switch (fee_estimate_mode) {
      42                 :          21 :     case FeeEstimateMode::SAT_VB: return strprintf("%d.%03d %s/vB", nSatoshisPerK / 1000, nSatoshisPerK % 1000, CURRENCY_ATOM);
      43                 :          19 :     default:                      return strprintf("%d.%08d %s/kvB", nSatoshisPerK / COIN, nSatoshisPerK % COIN, CURRENCY_UNIT);
      44                 :             :     }
      45                 :             : }
        

Generated by: LCOV version 2.0-1