diff options
author | luigi1111 <luigi1111w@gmail.com> | 2022-09-09 12:56:07 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2022-09-09 12:56:07 -0500 |
commit | 89f3d461204a416c82bff6da6a9cc9c3602132dc (patch) | |
tree | 8e03a7b5b2acc62f0e36b65a4f650e0f092fd453 | |
parent | Merge pull request #8552 (diff) | |
parent | Fix missing semi-colon in error message (diff) | |
download | monero-89f3d461204a416c82bff6da6a9cc9c3602132dc.tar.xz |
Merge pull request #8553
625147e Fix missing semi-colon in error message (j-berman)
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 195763949..91522e46c 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -13395,7 +13395,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; |