aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_args.cpp
diff options
context:
space:
mode:
authorstoffu <stoffu@protonmail.ch>2017-11-14 18:06:35 +0900
committerstoffu <stoffu@protonmail.ch>2017-11-16 08:03:25 +0900
commit617123841638cf6ee68c42954ea72985185465c0 (patch)
tree27be8593cae57d0a181b977d0f672e9f7181fa52 /src/wallet/wallet_args.cpp
parentMerge pull request #2818 (diff)
downloadmonero-617123841638cf6ee68c42954ea72985185465c0.tar.xz
daemon & simplewallet: don't set max-concurrency when unspecified
Diffstat (limited to 'src/wallet/wallet_args.cpp')
-rw-r--r--src/wallet/wallet_args.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_args.cpp b/src/wallet/wallet_args.cpp
index cc6bb1de2..e665042d4 100644
--- a/src/wallet/wallet_args.cpp
+++ b/src/wallet/wallet_args.cpp
@@ -178,7 +178,7 @@ namespace wallet_args
mlog_set_log(command_line::get_arg(vm, arg_log_level).c_str());
}
- if(command_line::has_arg(vm, arg_max_concurrency))
+ if (!command_line::is_arg_defaulted(vm, arg_max_concurrency))
tools::set_max_concurrency(command_line::get_arg(vm, arg_max_concurrency));
Print(print) << "Monero '" << MONERO_RELEASE_NAME << "' (v" << MONERO_VERSION_FULL << ")";