Branch data Line data Source code
1 : : // Copyright (c) 2023 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 <util/chaintype.h>
6 : :
7 : : #include <cassert>
8 : : #include <optional>
9 : : #include <string>
10 : :
11 : 1274145 : std::string ChainTypeToString(ChainType chain)
12 : : {
13 [ + + + + : 1274145 : switch (chain) {
+ - ]
14 : 1221760 : case ChainType::MAIN:
15 : 1221760 : return "main";
16 : 8988 : case ChainType::TESTNET:
17 : 8988 : return "test";
18 : 8543 : case ChainType::TESTNET4:
19 : 8543 : return "testnet4";
20 : 8693 : case ChainType::SIGNET:
21 : 8693 : return "signet";
22 : 26161 : case ChainType::REGTEST:
23 : 26161 : return "regtest";
24 : : }
25 : 0 : assert(false);
26 : : }
27 : :
28 : 169 : std::optional<ChainType> ChainTypeFromString(std::string_view chain)
29 : : {
30 [ + + ]: 169 : if (chain == "main") {
31 : 36 : return ChainType::MAIN;
32 [ + + ]: 133 : } else if (chain == "test") {
33 : 36 : return ChainType::TESTNET;
34 [ - + ]: 97 : } else if (chain == "testnet4") {
35 : 0 : return ChainType::TESTNET4;
36 [ + + ]: 97 : } else if (chain == "signet") {
37 : 36 : return ChainType::SIGNET;
38 [ + - ]: 61 : } else if (chain == "regtest") {
39 : 61 : return ChainType::REGTEST;
40 : : } else {
41 : 0 : return std::nullopt;
42 : : }
43 : : }
|