Merge pull request #7319

993e9be simplewallet: allow setting --restore-height 0 (selsta)
pull/377/head
luigi1111 3 years ago
commit 3328938d4e
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -4520,7 +4520,7 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
password = *r;
welcome = true;
// if no block_height is specified, assume its a new account and start it "now"
if(m_wallet->get_refresh_from_block_height() == 0) {
if (command_line::is_arg_defaulted(vm, arg_restore_height)) {
{
tools::scoped_message_writer wrt = tools::msg_writer();
wrt << tr("No restore height is specified.") << " ";

Loading…
Cancel
Save