tokens: fix url clap arg name (#34371)

Fix url clap arg name
This commit is contained in:
Tyera 2023-12-08 15:48:54 -07:00 committed by GitHub
parent 930ce1eb21
commit e8945d2ed5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -652,7 +652,7 @@ where
{
let matches = get_matches(args);
let config_file = matches.value_of("config_file").unwrap().to_string();
let url = matches.value_of("url").map(|x| x.to_string());
let url = matches.value_of("json_rpc_url").map(|x| x.to_string());
let command = match matches.subcommand() {
("distribute-tokens", Some(matches)) => {