diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-02-16 11:42:14 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-02-16 11:42:14 -0500 |
commit | 3328938d4e5a2d552e2cdcb3dd56f584cd336ef6 (patch) | |
tree | 0d57ebe105e73761401f29560e7a31f385f8db24 /src/simplewallet/simplewallet.cpp | |
parent | Merge pull request #7313 (diff) | |
parent | simplewallet: allow setting --restore-height 0 (diff) | |
download | monero-3328938d4e5a2d552e2cdcb3dd56f584cd336ef6.tar.xz |
Merge pull request #7319
993e9be simplewallet: allow setting --restore-height 0 (selsta)
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 594d79a13..309211ffb 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -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.") << " "; |