Bitcoin Core
22.99.0
P2P Digital Currency
src
util
error.h
Go to the documentation of this file.
1
// Copyright (c) 2010-2020 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
#ifndef BITCOIN_UTIL_ERROR_H
6
#define BITCOIN_UTIL_ERROR_H
7
18
#include <string>
19
20
struct
bilingual_str
;
21
22
enum class
TransactionError
{
23
OK
,
24
MISSING_INPUTS
,
25
ALREADY_IN_CHAIN
,
26
P2P_DISABLED
,
27
MEMPOOL_REJECTED
,
28
MEMPOOL_ERROR
,
29
INVALID_PSBT
,
30
PSBT_MISMATCH
,
31
SIGHASH_MISMATCH
,
32
MAX_FEE_EXCEEDED
,
33
EXTERNAL_SIGNER_NOT_FOUND
,
34
EXTERNAL_SIGNER_FAILED
,
35
};
36
37
bilingual_str
TransactionErrorString
(
const
TransactionError
error
);
38
39
bilingual_str
ResolveErrMsg
(
const
std::string& optname,
const
std::string& strBind);
40
41
bilingual_str
AmountHighWarn
(
const
std::string& optname);
42
43
bilingual_str
AmountErrMsg
(
const
std::string& optname,
const
std::string& strValue);
44
45
#endif // BITCOIN_UTIL_ERROR_H
TransactionError::MEMPOOL_REJECTED
@ MEMPOOL_REJECTED
TransactionError::EXTERNAL_SIGNER_FAILED
@ EXTERNAL_SIGNER_FAILED
bilingual_str
Bilingual messages:
Definition:
translation.h:16
TransactionError::MEMPOOL_ERROR
@ MEMPOOL_ERROR
TransactionError::PSBT_MISMATCH
@ PSBT_MISMATCH
TransactionError
TransactionError
Definition:
error.h:22
AmountHighWarn
bilingual_str AmountHighWarn(const std::string &optname)
Definition:
error.cpp:48
TransactionErrorString
bilingual_str TransactionErrorString(const TransactionError error)
Definition:
error.cpp:11
TransactionError::EXTERNAL_SIGNER_NOT_FOUND
@ EXTERNAL_SIGNER_NOT_FOUND
TransactionError::INVALID_PSBT
@ INVALID_PSBT
TransactionError::SIGHASH_MISMATCH
@ SIGHASH_MISMATCH
TransactionError::P2P_DISABLED
@ P2P_DISABLED
ResolveErrMsg
bilingual_str ResolveErrMsg(const std::string &optname, const std::string &strBind)
Definition:
error.cpp:43
TransactionError::OK
@ OK
No error.
error
bool error(const char *fmt, const Args &... args)
Definition:
system.h:49
TransactionError::MISSING_INPUTS
@ MISSING_INPUTS
TransactionError::MAX_FEE_EXCEEDED
@ MAX_FEE_EXCEEDED
AmountErrMsg
bilingual_str AmountErrMsg(const std::string &optname, const std::string &strValue)
Definition:
error.cpp:53
TransactionError::ALREADY_IN_CHAIN
@ ALREADY_IN_CHAIN
Generated on Fri Feb 18 2022 20:03:52 for Bitcoin Core by
1.8.17