2020-12-31 18:50:11 +01:00
|
|
|
// Copyright (c) 2010-2020 The Bitcoin Core developers
|
2021-06-25 08:07:28 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_UTIL_ERROR_H
|
|
|
|
#define BITCOIN_UTIL_ERROR_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
* util/error.h is a common place for definitions of simple error types and
|
|
|
|
* string functions. Types and functions defined here should not require any
|
|
|
|
* outside dependencies.
|
|
|
|
*
|
2019-08-15 16:06:23 +02:00
|
|
|
* Error types defined here can be used in different parts of the
|
2021-06-25 08:07:28 +02:00
|
|
|
* codebase, to avoid the need to write boilerplate code catching and
|
|
|
|
* translating errors passed across wallet/node/rpc/gui code boundaries.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2022-04-07 10:17:19 +02:00
|
|
|
struct bilingual_str;
|
|
|
|
|
2021-11-16 16:19:47 +01:00
|
|
|
enum class TransactionError {
|
|
|
|
OK, //!< No error
|
|
|
|
MISSING_INPUTS,
|
|
|
|
ALREADY_IN_CHAIN,
|
|
|
|
P2P_DISABLED,
|
|
|
|
MEMPOOL_REJECTED,
|
|
|
|
MEMPOOL_ERROR,
|
|
|
|
INVALID_PSBT,
|
|
|
|
PSBT_MISMATCH,
|
|
|
|
SIGHASH_MISMATCH,
|
2021-12-13 05:28:46 +01:00
|
|
|
MAX_FEE_EXCEEDED,
|
2021-11-16 16:19:47 +01:00
|
|
|
};
|
|
|
|
|
2022-04-07 10:17:19 +02:00
|
|
|
bilingual_str TransactionErrorString(const TransactionError error);
|
2021-11-16 16:19:47 +01:00
|
|
|
|
2022-04-07 10:17:19 +02:00
|
|
|
bilingual_str ResolveErrMsg(const std::string& optname, const std::string& strBind);
|
2019-08-15 16:06:23 +02:00
|
|
|
|
2019-09-03 16:23:38 +02:00
|
|
|
bilingual_str AmountHighWarn(const std::string& optname);
|
2019-08-15 16:06:23 +02:00
|
|
|
|
2019-09-03 16:23:38 +02:00
|
|
|
bilingual_str AmountErrMsg(const std::string& optname, const std::string& strValue);
|
2021-06-25 08:07:28 +02:00
|
|
|
|
|
|
|
#endif // BITCOIN_UTIL_ERROR_H
|