mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
simplewallet: fix restore height prompt that got disabled by #3175
This commit is contained in:
parent
a69c713f8e
commit
6f54c910f7
@ -2581,6 +2581,11 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
|
|||||||
r = new_wallet(vm, m_recovery_key, m_restore_deterministic_wallet, m_non_deterministic, old_language);
|
r = new_wallet(vm, m_recovery_key, m_restore_deterministic_wallet, m_non_deterministic, old_language);
|
||||||
CHECK_AND_ASSERT_MES(r, false, tr("account creation failed"));
|
CHECK_AND_ASSERT_MES(r, false, tr("account creation failed"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (m_restoring && m_generate_from_json.empty())
|
||||||
|
{
|
||||||
|
m_wallet->explicit_refresh_from_block_height(!command_line::is_arg_defaulted(vm, arg_restore_height));
|
||||||
|
}
|
||||||
if (!m_wallet->explicit_refresh_from_block_height() && m_restoring)
|
if (!m_wallet->explicit_refresh_from_block_height() && m_restoring)
|
||||||
{
|
{
|
||||||
uint32_t version;
|
uint32_t version;
|
||||||
|
Loading…
Reference in New Issue
Block a user