mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 05:03:26 +01:00
Fix missing semi-colon in error message
Co-authored-by: woodser <woodser@protonmail.com>
This commit is contained in:
parent
57e57c239b
commit
625147e577
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user