aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2022-09-09 12:56:53 -0500
committerluigi1111 <luigi1111w@gmail.com>2022-09-09 12:56:53 -0500
commit6402dbee69867c76530b45e8a21b692850fea03f (patch)
treece41e197d22d6cafa2619282e8f8fdd97fdd7591
parentMerge pull request #8547 (diff)
parentFix missing semi-colon in error message (diff)
downloadmonero-6402dbee69867c76530b45e8a21b692850fea03f.tar.xz
Merge pull request #8554
76a5b54 Fix missing semi-colon in error message (j-berman)
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 78b5c3a20..b6d95b6b7 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -13450,7 +13450,7 @@ size_t wallet2::import_outputs_from_str(const std::string &outputs_st)
}
catch (const std::exception &e)
{
- THROW_WALLET_EXCEPTION(error::wallet_internal_error, std::string("Failed to import outputs") + e.what());
+ THROW_WALLET_EXCEPTION(error::wallet_internal_error, std::string("Failed to import outputs: ") + e.what());
}
return imported_outputs;