LCOV - code coverage report
Current view: top level - src/util - error.cpp (source / functions) Hit Total Coverage
Test: total_coverage.info Lines: 13 29 44.8 %
Date: 2026-06-25 07:23:43 Functions: 4 5 80.0 %

          Line data    Source code
       1             : // Copyright (c) 2010-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 <util/error.h>
       6             : 
       7             : #include <tinyformat.h>
       8             : #include <util/translation.h>
       9             : 
      10             : #include <cassert>
      11             : #include <string>
      12             : 
      13         108 : bilingual_str TransactionErrorString(const TransactionError err)
      14             : {
      15         108 :     switch (err) {
      16             :         case TransactionError::OK:
      17           0 :             return Untranslated("No error");
      18             :         case TransactionError::MISSING_INPUTS:
      19           4 :             return Untranslated("Inputs missing or spent");
      20             :         case TransactionError::ALREADY_IN_CHAIN:
      21           9 :             return Untranslated("Transaction already in block chain");
      22             :         case TransactionError::P2P_DISABLED:
      23           0 :             return Untranslated("Peer-to-peer functionality missing or disabled");
      24             :         case TransactionError::MEMPOOL_REJECTED:
      25           0 :             return Untranslated("Transaction rejected by mempool");
      26             :         case TransactionError::MEMPOOL_ERROR:
      27           0 :             return Untranslated("Mempool internal error");
      28             :         case TransactionError::INVALID_PSBT:
      29           0 :             return Untranslated("PSBT is not well-formed");
      30             :         case TransactionError::PSBT_MISMATCH:
      31           4 :             return Untranslated("PSBTs not compatible (different transactions)");
      32             :         case TransactionError::SIGHASH_MISMATCH:
      33           0 :             return Untranslated("Specified sighash value does not match value stored in PSBT");
      34             :         case TransactionError::MAX_FEE_EXCEEDED:
      35          91 :             return Untranslated("Fee exceeds maximum configured by user (e.g. -maxtxfee, maxfeerate)");
      36             :         case TransactionError::EXTERNAL_SIGNER_NOT_FOUND:
      37           0 :             return Untranslated("External signer not found");
      38             :         case TransactionError::EXTERNAL_SIGNER_FAILED:
      39           0 :             return Untranslated("External signer failed to sign");
      40             :         case TransactionError::INVALID_PACKAGE:
      41           0 :             return Untranslated("Transaction rejected due to invalid package");
      42             :         // no default case, so the compiler can warn about missing cases
      43             :     }
      44           0 :     assert(false);
      45         108 : }
      46             : 
      47           4 : bilingual_str ResolveErrMsg(const std::string& optname, const std::string& strBind)
      48             : {
      49           4 :     return strprintf(_("Cannot resolve -%s address: '%s'"), optname, strBind);
      50           0 : }
      51             : 
      52           6 : bilingual_str InvalidPortErrMsg(const std::string& optname, const std::string& invalid_value)
      53             : {
      54           6 :     return strprintf(_("Invalid port specified in %s: '%s'"), optname, invalid_value);
      55           0 : }
      56             : 
      57          26 : bilingual_str AmountHighWarn(const std::string& optname)
      58             : {
      59          26 :     return strprintf(_("%s is set very high!"), optname);
      60           0 : }
      61             : 
      62           0 : bilingual_str AmountErrMsg(const std::string& optname, const std::string& strValue)
      63             : {
      64           0 :     return strprintf(_("Invalid amount for -%s=<amount>: '%s'"), optname, strValue);
      65           0 : }

Generated by: LCOV version 1.16