mirror of
https://github.com/monero-project/monero.git
synced 2025-08-09 04:22:19 -04:00
wallet cli/rpc: terminate execution with code 0 when --help or --version is given
This commit is contained in:
parent
8fdf645397
commit
f36132a837
5 changed files with 36 additions and 10 deletions
|
@ -2895,7 +2895,9 @@ int main(int argc, char** argv) {
|
|||
command_line::add_arg(desc_params, arg_wallet_dir);
|
||||
command_line::add_arg(desc_params, arg_prompt_for_password);
|
||||
|
||||
const auto vm = wallet_args::main(
|
||||
boost::optional<po::variables_map> vm;
|
||||
bool should_terminate = false;
|
||||
std::tie(vm, should_terminate) = wallet_args::main(
|
||||
argc, argv,
|
||||
"monero-wallet-rpc [--wallet-file=<file>|--generate-from-json=<file>|--wallet-dir=<directory>] [--rpc-bind-port=<port>]",
|
||||
tools::wallet_rpc_server::tr("This is the RPC monero wallet. It needs to connect to a monero\ndaemon to work correctly."),
|
||||
|
@ -2909,6 +2911,10 @@ int main(int argc, char** argv) {
|
|||
{
|
||||
return 1;
|
||||
}
|
||||
if (should_terminate)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
std::unique_ptr<tools::wallet2> wal;
|
||||
try
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue