Add short version parameter to cli_wallet
This commit is contained in:
parent
fcd360c2fd
commit
050c0b27e5
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ int main( int argc, char** argv )
|
||||||
boost::program_options::options_description opts;
|
boost::program_options::options_description opts;
|
||||||
opts.add_options()
|
opts.add_options()
|
||||||
("help,h", "Print this help message and exit.")
|
("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<string>()->implicit_value("ws://127.0.0.1:8090"), "Server websocket RPC endpoint")
|
("server-rpc-endpoint,s", bpo::value<string>()->implicit_value("ws://127.0.0.1:8090"), "Server websocket RPC endpoint")
|
||||||
("server-rpc-user,u", bpo::value<string>(), "Server Username")
|
("server-rpc-user,u", bpo::value<string>(), "Server Username")
|
||||||
("server-rpc-password,p", bpo::value<string>(), "Server Password")
|
("server-rpc-password,p", bpo::value<string>(), "Server Password")
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue