Skip to content

Commit

Permalink
tokens: fix url clap arg name (#34371)
Browse files Browse the repository at this point in the history
Fix url clap arg name

(cherry picked from commit e8945d2)
  • Loading branch information
CriesofCarrots authored and mergify[bot] committed Dec 8, 2023
1 parent f63bad6 commit 97aed75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokens/src/arg_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)) => {
Expand Down

0 comments on commit 97aed75

Please sign in to comment.