mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 11:23:26 +01:00
exit if specified wallet file doesn't exist
This commit is contained in:
parent
8361d60aef
commit
c8cb5fca5e
@ -3456,6 +3456,17 @@ bool simple_wallet::open_wallet(const boost::program_options::variables_map& vm)
|
|||||||
fail_msg_writer() << tr("wallet file path not valid: ") << m_wallet_file;
|
fail_msg_writer() << tr("wallet file path not valid: ") << m_wallet_file;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool keys_file_exists;
|
||||||
|
bool wallet_file_exists;
|
||||||
|
|
||||||
|
tools::wallet2::wallet_exists(m_wallet_file, keys_file_exists, wallet_file_exists);
|
||||||
|
if(!keys_file_exists)
|
||||||
|
{
|
||||||
|
fail_msg_writer() << tr("Key file not found. Failed to open wallet");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
epee::wipeable_string password;
|
epee::wipeable_string password;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user