LCOV - code coverage report
Current view: top level - src - deploymentinfo.cpp (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 14 23 60.9 %
Date: 2024-05-24 08:22:33 Functions: 2 2 100.0 %
Branches: 13 30 43.3 %

           Branch data     Line data    Source code
       1                 :            : // Copyright (c) 2016-2021 The Bitcoin Core developers
       2                 :            : // Distributed under the MIT software license, see the accompanying
       3                 :            : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :            : 
       5                 :            : #include <deploymentinfo.h>
       6                 :            : 
       7                 :            : #include <consensus/params.h>
       8                 :            : 
       9                 :            : #include <string_view>
      10                 :            : 
      11                 :            : const struct VBDeploymentInfo VersionBitsDeploymentInfo[Consensus::MAX_VERSION_BITS_DEPLOYMENTS] = {
      12                 :            :     {
      13                 :            :         /*.name =*/ "testdummy",
      14                 :            :         /*.gbt_force =*/ true,
      15                 :            :     },
      16                 :            :     {
      17                 :            :         /*.name =*/ "taproot",
      18                 :            :         /*.gbt_force =*/ true,
      19                 :            :     },
      20                 :            : };
      21                 :            : 
      22                 :         15 : std::string DeploymentName(Consensus::BuriedDeployment dep)
      23                 :            : {
      24         [ +  - ]:         15 :     assert(ValidDeployment(dep));
      25   [ -  +  +  +  :         15 :     switch (dep) {
                   +  + ]
      26                 :            :     case Consensus::DEPLOYMENT_HEIGHTINCB:
      27         [ +  - ]:          3 :         return "bip34";
      28                 :            :     case Consensus::DEPLOYMENT_CLTV:
      29         [ +  - ]:          3 :         return "bip65";
      30                 :            :     case Consensus::DEPLOYMENT_DERSIG:
      31         [ +  - ]:          3 :         return "bip66";
      32                 :            :     case Consensus::DEPLOYMENT_CSV:
      33         [ +  - ]:          3 :         return "csv";
      34                 :            :     case Consensus::DEPLOYMENT_SEGWIT:
      35         [ -  + ]:          3 :         return "segwit";
      36                 :            :     } // no default case, so the compiler can warn about missing cases
      37         [ #  # ]:          0 :     return "";
      38                 :         15 : }
      39                 :            : 
      40                 :       2351 : std::optional<Consensus::BuriedDeployment> GetBuriedDeployment(const std::string_view name)
      41                 :            : {
      42         [ -  + ]:       2351 :     if (name == "segwit") {
      43                 :          0 :         return Consensus::BuriedDeployment::DEPLOYMENT_SEGWIT;
      44         [ +  - ]:       2351 :     } else if (name == "bip34") {
      45                 :       2351 :         return Consensus::BuriedDeployment::DEPLOYMENT_HEIGHTINCB;
      46         [ #  # ]:          0 :     } else if (name == "dersig") {
      47                 :          0 :         return Consensus::BuriedDeployment::DEPLOYMENT_DERSIG;
      48         [ #  # ]:          0 :     } else if (name == "cltv") {
      49                 :          0 :         return Consensus::BuriedDeployment::DEPLOYMENT_CLTV;
      50         [ #  # ]:          0 :     } else if (name == "csv") {
      51                 :          0 :         return Consensus::BuriedDeployment::DEPLOYMENT_CSV;
      52                 :            :     }
      53                 :          0 :     return std::nullopt;
      54                 :       2351 : }

Generated by: LCOV version 1.16