Skip to content

Commit

Permalink
Change value_delimiter to newline
Browse files Browse the repository at this point in the history
  • Loading branch information
elizabethengelman committed Sep 30, 2024
1 parent ddd05cf commit baaa7ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/soroban-cli/src/config/network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub struct Args {
help_heading = HEADING_RPC,
num_args = 1,
action = clap::ArgAction::Append,
value_delimiter = ',',
value_delimiter = '\n',
value_parser = parse_http_header,
)]
pub rpc_headers: Vec<(String, String)>,
Expand Down Expand Up @@ -123,7 +123,7 @@ pub struct Network {
help_heading = HEADING_RPC,
num_args = 1,
action = clap::ArgAction::Append,
value_delimiter = ',',
value_delimiter = '\n',
value_parser = parse_http_header,
)]
pub rpc_headers: Vec<(String, String)>,
Expand Down

0 comments on commit baaa7ba

Please sign in to comment.