wallet-cli: Do not ask for scan_from_height if it explicitly is set to zero.

Fixes #3080
This commit is contained in:
Maximilian Lupke
2018-01-23 15:42:11 +01:00
parent 5f09d6c833
commit 3be98036e7
3 changed files with 9 additions and 1 deletions
+2
View File
@@ -361,6 +361,7 @@ std::unique_ptr<tools::wallet2> generate_from_json(const std::string& json_file,
wallet.reset(make_basic(vm, opts, password_prompter).release());
wallet->set_refresh_from_block_height(field_scan_from_height);
wallet->explicit_refresh_from_block_height(field_scan_from_height_found);
try
{
@@ -605,6 +606,7 @@ wallet2::wallet2(bool testnet, bool restricted):
m_refresh_type(RefreshOptimizeCoinbase),
m_auto_refresh(true),
m_refresh_from_block_height(0),
m_explicit_refresh_from_block_height(true),
m_confirm_missing_payment_id(true),
m_ask_password(true),
m_min_output_count(0),