Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 2792392

Browse files
mergify[bot]Tyera
and
Tyera
authored
v1.16: tokens: fix url clap arg name (backport of #34371) (#34374)
tokens: fix url clap arg name (#34371) Fix url clap arg name (cherry picked from commit e8945d2) Co-authored-by: Tyera <[email protected]>
1 parent f63bad6 commit 2792392

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tokens/src/arg_parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ where
652652
{
653653
let matches = get_matches(args);
654654
let config_file = matches.value_of("config_file").unwrap().to_string();
655-
let url = matches.value_of("url").map(|x| x.to_string());
655+
let url = matches.value_of("json_rpc_url").map(|x| x.to_string());
656656

657657
let command = match matches.subcommand() {
658658
("distribute-tokens", Some(matches)) => {

0 commit comments

Comments
 (0)