aboutsummaryrefslogtreecommitdiff
path: root/src/util/error.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/error.cpp')
-rw-r--r--src/util/error.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/util/error.cpp b/src/util/error.cpp
index 9edb7dc533..aa44ed3e3a 100644
--- a/src/util/error.cpp
+++ b/src/util/error.cpp
@@ -36,12 +36,17 @@ std::string TransactionErrorString(const TransactionError err)
assert(false);
}
-std::string AmountHighWarn(const std::string& optname)
+std::string ResolveErrMsg(const std::string& optname, const std::string& strBind)
{
- return strprintf(_("%s is set very high!").translated, optname);
+ return strprintf(_("Cannot resolve -%s address: '%s'").translated, optname, strBind);
}
-std::string AmountErrMsg(const char* const optname, const std::string& strValue)
+bilingual_str AmountHighWarn(const std::string& optname)
{
- return strprintf(_("Invalid amount for -%s=<amount>: '%s'").translated, optname, strValue);
+ return strprintf(_("%s is set very high!"), optname);
+}
+
+bilingual_str AmountErrMsg(const std::string& optname, const std::string& strValue)
+{
+ return strprintf(_("Invalid amount for -%s=<amount>: '%s'"), optname, strValue);
}