mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
simplewallet: don't ask about mining when running a command line
This is likely to be done via a script
This commit is contained in:
parent
6335509727
commit
a604241ef6
1 changed files with 3 additions and 1 deletions
|
@ -4087,7 +4087,9 @@ bool simple_wallet::init(const boost::program_options::variables_map& vm)
|
|||
|
||||
m_wallet->callback(this);
|
||||
|
||||
check_background_mining(password);
|
||||
bool skip_check_backround_mining = !command_line::get_arg(vm, arg_command).empty();
|
||||
if (!skip_check_backround_mining)
|
||||
check_background_mining(password);
|
||||
|
||||
if (welcome)
|
||||
message_writer(console_color_yellow, true) << tr("If you are new to Monero, type \"welcome\" for a brief overview.");
|
||||
|
|
Loading…
Reference in a new issue