From 050c0b27e535c58c4d197df114e9f8fd90b55833 Mon Sep 17 00:00:00 2001 From: serkixenos Date: Tue, 15 Feb 2022 10:48:32 -0400 Subject: [PATCH] Add short version parameter to cli_wallet --- programs/cli_wallet/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/cli_wallet/main.cpp b/programs/cli_wallet/main.cpp index 5a0ee3ba..34719fbd 100644 --- a/programs/cli_wallet/main.cpp +++ b/programs/cli_wallet/main.cpp @@ -75,7 +75,7 @@ int main( int argc, char** argv ) boost::program_options::options_description opts; opts.add_options() ("help,h", "Print this help message and exit.") - ("version", "Display the version info and exit") + ("version,v", "Display the version info and exit") ("server-rpc-endpoint,s", bpo::value()->implicit_value("ws://127.0.0.1:8090"), "Server websocket RPC endpoint") ("server-rpc-user,u", bpo::value(), "Server Username") ("server-rpc-password,p", bpo::value(), "Server Password")