diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-06-30 17:36:31 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-17 16:12:06 +0000 |
commit | fff871a455a7829d2ccbceb04306365b30bd641e (patch) | |
tree | 33d5e595b94075d7e3625a795186c83b0c3119f1 /src/wallet/wallet_args.cpp | |
parent | wallet2: allow empty wallet filename to avoid saving data (diff) | |
download | monero-fff871a455a7829d2ccbceb04306365b30bd641e.tar.xz |
gen_multisig: generates multisig wallets if participants trust each other
Diffstat (limited to 'src/wallet/wallet_args.cpp')
-rw-r--r-- | src/wallet/wallet_args.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/wallet_args.cpp b/src/wallet/wallet_args.cpp index 91162c4bc..2273f14ad 100644 --- a/src/wallet/wallet_args.cpp +++ b/src/wallet/wallet_args.cpp @@ -85,6 +85,7 @@ namespace wallet_args boost::optional<boost::program_options::variables_map> main( int argc, char** argv, const char* const usage, + const char* const notice, boost::program_options::options_description desc_params, const boost::program_options::positional_options_description& positional_options, const std::function<void(const std::string&, bool)> &print, @@ -179,6 +180,9 @@ namespace wallet_args mlog_set_log(command_line::get_arg(vm, arg_log_level).c_str()); } + if (notice) + Print(print) << notice << ENDL; + if (!command_line::is_arg_defaulted(vm, arg_max_concurrency)) tools::set_max_concurrency(command_line::get_arg(vm, arg_max_concurrency)); |