aboutsummaryrefslogtreecommitdiff
path: root/src/util/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/error.h')
-rw-r--r--src/util/error.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/util/error.h b/src/util/error.h
index 0fd474b962..f540b0020d 100644
--- a/src/util/error.h
+++ b/src/util/error.h
@@ -10,13 +10,15 @@
* string functions. Types and functions defined here should not require any
* outside dependencies.
*
- * Error types defined here can be used in different parts of the bitcoin
+ * Error types defined here can be used in different parts of the
* codebase, to avoid the need to write boilerplate code catching and
* translating errors passed across wallet/node/rpc/gui code boundaries.
*/
#include <string>
+struct bilingual_str;
+
enum class TransactionError {
OK, //!< No error
MISSING_INPUTS,
@@ -32,8 +34,10 @@ enum class TransactionError {
std::string TransactionErrorString(const TransactionError error);
-std::string AmountHighWarn(const std::string& optname);
+std::string ResolveErrMsg(const std::string& optname, const std::string& strBind);
+
+bilingual_str AmountHighWarn(const std::string& optname);
-std::string AmountErrMsg(const char* const optname, const std::string& strValue);
+bilingual_str AmountErrMsg(const std::string& optname, const std::string& strValue);
#endif // BITCOIN_UTIL_ERROR_H