From 0ab7e4ddd9fe4649eae3266e61a7559d678317f5 Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Wed, 5 Feb 2020 12:15:06 +0000 Subject: [PATCH] mix-host and client-host no longer required for 'run' --- sfw-provider/src/commands/run.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/sfw-provider/src/commands/run.rs b/sfw-provider/src/commands/run.rs index f6e5b65d5a..1b49cf3ba2 100644 --- a/sfw-provider/src/commands/run.rs +++ b/sfw-provider/src/commands/run.rs @@ -30,7 +30,6 @@ pub fn command_args<'a, 'b>() -> clap::App<'a, 'b> { .long("mix-host") .help("The custom host on which the service provider will be running for receiving sphinx packets") .takes_value(true) - .required(true), ) .arg( Arg::with_name("mix-port") @@ -43,7 +42,6 @@ pub fn command_args<'a, 'b>() -> clap::App<'a, 'b> { .long("clients-host") .help("The custom host on which the service provider will be running for receiving clients sfw-provider-requests") .takes_value(true) - .required(true), ) .arg( Arg::with_name("clients-port")