mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Fix thread count argument handling in simplewallet
This commit is contained in:
parent
dee9abcd60
commit
a016499a0e
1 changed files with 2 additions and 2 deletions
|
@ -499,9 +499,9 @@ bool simple_wallet::start_mining(const std::vector<std::string>& args)
|
||||||
}
|
}
|
||||||
else if (1 == args.size())
|
else if (1 == args.size())
|
||||||
{
|
{
|
||||||
uint16_t num;
|
uint16_t num = 1;
|
||||||
ok = string_tools::get_xtype_from_string(num, args[0]);
|
ok = string_tools::get_xtype_from_string(num, args[0]);
|
||||||
ok &= (1 <= num && num <= max_mining_threads_count);
|
ok = ok && (1 <= num && num <= max_mining_threads_count);
|
||||||
req.threads_count = num;
|
req.threads_count = num;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue