Skip to content

Commit

Permalink
chore: remove contracts_to_compile from CompilerArgs (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
elfedy authored May 29, 2024
1 parent d68d23a commit 1f3160e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/cli/src/opts/build/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ pub struct CompilerArgs {
#[serde(skip)]
pub zk_optimizer: bool,

/// Contracts to compile
#[clap(long, help_heading = "Contracts to compile", value_delimiter = ',')]
pub contracts_to_compile: Option<Vec<String>>,

/// Contracts to avoid compiling
#[clap(long, help_heading = "Contracts to avoid compilation", value_delimiter = ',')]
/// Contracts to avoid compiling on zkSync
#[clap(
long,
help_heading = "Contracts to avoid during zkSync compilation",
value_delimiter = ','
)]
pub avoid_contracts: Option<Vec<String>>,
}

Expand Down

0 comments on commit 1f3160e

Please sign in to comment.