Fix missing semi-colon in error message

Co-authored-by: woodser <woodser@protonmail.com>
This commit is contained in:
j-berman 2022-09-06 18:37:25 -06:00 committed by wowario
parent 5e2bc401ca
commit 26defe5aea
No known key found for this signature in database
GPG key ID: 24DCBE762DE9C111

View file

@ -13353,7 +13353,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;