diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-08-15 10:06:23 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-08-15 10:05:32 -0400 |
commit | fa27c55b0593c769b6ad87de0b59df3816d73548 (patch) | |
tree | dc770cf00128f231a6db692a519f0ff9a38546a7 /src/util/error.h | |
parent | 8fc7f0cba9b1b60ce25d6a8ba51052af1461f825 (diff) |
util: Move ResolveErrMsg to util/error
Diffstat (limited to 'src/util/error.h')
-rw-r--r-- | src/util/error.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/util/error.h b/src/util/error.h index 0fd474b962..7777cc0c5d 100644 --- a/src/util/error.h +++ b/src/util/error.h @@ -10,7 +10,7 @@ * 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. */ @@ -32,8 +32,10 @@ enum class TransactionError { std::string TransactionErrorString(const TransactionError error); +std::string ResolveErrMsg(const std::string& optname, const std::string& strBind); + std::string AmountHighWarn(const std::string& optname); -std::string AmountErrMsg(const char* const optname, const std::string& strValue); +std::string AmountErrMsg(const std::string& optname, const std::string& strValue); #endif // BITCOIN_UTIL_ERROR_H |