From 948d691fe1653cce52de6b4373ff10bf91f6ccf0 Mon Sep 17 00:00:00 2001 From: Raul Jordan Date: Tue, 3 Sep 2024 10:51:35 -0500 Subject: [PATCH] flag --- main/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/src/main.rs b/main/src/main.rs index c8ad527..3b2d63f 100644 --- a/main/src/main.rs +++ b/main/src/main.rs @@ -215,8 +215,8 @@ struct DeployConfig { /// builds, but at the risk of not having a reproducible contract for verification purposes. #[arg(long)] no_verify: bool, - /// Cargo stylus version when deploying reproducibly. If not set, uses the default version of the local - /// cargo stylus binary. TODO: sets in the Docker image. + /// Cargo stylus version when deploying reproducibly to downloads the corresponding cargo-stylus-base Docker image. + /// If not set, uses the default version of the local cargo stylus binary. #[arg(long)] cargo_stylus_version: Option, } @@ -232,8 +232,8 @@ pub struct VerifyConfig { /// If specified, will not run the command in a reproducible docker container. Useful for local /// builds, but at the risk of not having a reproducible contract for verification purposes. no_verify: bool, - /// Cargo stylus version when deploying reproducibly. If not set, uses the default version of the local - /// cargo stylus binary. TODO: sets in the Docker image. + /// Cargo stylus version when deploying reproducibly to downloads the corresponding cargo-stylus-base Docker image. + /// If not set, uses the default version of the local cargo stylus binary. #[arg(long)] cargo_stylus_version: Option, }