We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b53976 commit c64ea0dCopy full SHA for c64ea0d
timeboost/src/binaries/timeboost.rs
@@ -69,8 +69,8 @@ struct Cli {
69
namespace: u64,
70
71
/// Submitter should connect only with https?
72
- #[clap(long, default_value_t = true)]
73
- https_only: bool,
+ #[clap(long, default_value_t = false)]
+ no_https: bool,
74
75
/// The until value to use for the committee config.
76
#[cfg(feature = "until")]
@@ -220,7 +220,7 @@ async fn main() -> Result<()> {
220
.base_url(cli.espresso_base_url)
221
.wss_base_url(cli.espresso_websocket_url)
222
.label(pubkey.to_string())
223
- .https_only(cli.https_only)
+ .https_only(!cli.no_https)
224
.build(),
225
Vec::new(),
226
))
0 commit comments