File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,8 @@ for (( i=0; i<$nodes; i++ )); do
128
128
--keyset-file $keyset_file
129
129
--stamp " ${stamp} -$i .sf"
130
130
--watchdog-timeout 120
131
- --namespace $namespace )
131
+ --namespace $namespace
132
+ --https-only " false" )
132
133
133
134
if $ignore_stamp ; then
134
135
cmd+=(--ignore-stamp)
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ struct Cli {
69
69
namespace : u64 ,
70
70
71
71
/// Submitter should connect only with https?
72
- #[ clap( long, default_value_t = false ) ]
73
- no_https : bool ,
72
+ #[ clap( long, default_value_t = true , action = clap :: ArgAction :: Set ) ]
73
+ https_only : bool ,
74
74
75
75
/// The until value to use for the committee config.
76
76
#[ cfg( feature = "until" ) ]
@@ -220,7 +220,7 @@ async fn main() -> Result<()> {
220
220
. base_url ( cli. espresso_base_url )
221
221
. wss_base_url ( cli. espresso_websocket_url )
222
222
. label ( pubkey. to_string ( ) )
223
- . https_only ( ! cli. no_https )
223
+ . https_only ( cli. https_only )
224
224
. build ( ) ,
225
225
Vec :: new ( ) ,
226
226
) )
You can’t perform that action at this time.
0 commit comments