Bitcoin ABC 0.32.12
P2P Digital Currency
messages.h
Go to the documentation of this file.
1// Copyright (c) 2010-2018 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_COMMON_MESSAGES_H
6#define BITCOIN_COMMON_MESSAGES_H
7
8#include <string>
9
10struct bilingual_str;
11
12namespace node {
13enum class TransactionError;
14} // namespace node
15
16namespace common {
17enum class PSBTError;
19
21
22bilingual_str ResolveErrMsg(const std::string &optname,
23 const std::string &strBind);
24
25bilingual_str InvalidPortErrMsg(const std::string &optname,
26 const std::string &strPort);
27
28bilingual_str AmountHighWarn(const std::string &optname);
29
30bilingual_str AmountErrMsg(const std::string &optname,
31 const std::string &strValue);
32} // namespace common
33
34#endif // BITCOIN_COMMON_MESSAGES_H
Definition: args.cpp:864
PSBTError
Definition: types.h:17
bilingual_str PSBTErrorString(PSBTError err)
Definition: messages.cpp:22
bilingual_str AmountErrMsg(const std::string &optname, const std::string &strValue)
Definition: messages.cpp:73
bilingual_str ResolveErrMsg(const std::string &optname, const std::string &strBind)
Definition: messages.cpp:58
bilingual_str AmountHighWarn(const std::string &optname)
Definition: messages.cpp:69
bilingual_str InvalidPortErrMsg(const std::string &optname, const std::string &invalid_value)
Definition: messages.cpp:63
bilingual_str TransactionErrorString(const TransactionError error)
Definition: messages.cpp:36
Definition: messages.h:12
TransactionError
Definition: types.h:17
Bilingual messages:
Definition: translation.h:17