mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #8554
76a5b54
Fix missing semi-colon in error message (j-berman)
This commit is contained in:
commit
6402dbee69
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user