Skip to content

Commit

Permalink
fix args
Browse files Browse the repository at this point in the history
  • Loading branch information
muhamadazmy committed Sep 26, 2023
1 parent f986c31 commit a1c8191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bins/rmb-peer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ struct Params {
short,
long,
default_value = "wss://tfchain.grid.tf:443",
num_args = 1..,
action=ArgAction::Append,
)]
substrate: Vec<String>,

/// set of relay Urls (max 3) please ensure url contain a domain
#[clap(long, num_args = 1..=3 , default_values = ["wss://relay.grid.tf:443"])]
#[clap(long, action=ArgAction::Append, default_values = ["wss://relay.grid.tf:443"])]
relay: Vec<String>,

/// enable debugging logs
Expand Down

0 comments on commit a1c8191

Please sign in to comment.