Skip to content

Commit

Permalink
tamo
Browse files Browse the repository at this point in the history
  • Loading branch information
MBerguer committed Jan 6, 2025
1 parent 74c0fc8 commit 085b14a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/zksync/compilers/src/compilers/zksolc/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ pub struct ZkSettings {
/// Switch to missing deployable libraries detection mode.
/// Contracts are not compiled in this mode, and all compilation artifacts are not included.
#[serde(default, rename = "detectMissingLibraries")]
pub detect_missing_libraries: bool,
pub zk_detect_missing_libraries: bool,
// zksolc arguments
/// A flag indicating whether to enable the system contract compilation mode.
/// Whether to enable EraVM extensions.
Expand Down Expand Up @@ -204,7 +204,7 @@ impl Default for ZkSettings {
via_ir: None,
libraries: Default::default(),
remappings: Default::default(),
detect_missing_libraries: false,
zk_detect_missing_libraries: false,
enable_eravm_extensions: false,
llvm_options: Default::default(),
force_evmla: false,
Expand Down Expand Up @@ -244,7 +244,7 @@ impl CompilerSettings for ZkSolcSettings {
optimizer,
metadata,
libraries,
detect_missing_libraries,
zk_detect_missing_libraries,
enable_eravm_extensions,
llvm_options,
force_evmla,
Expand All @@ -262,7 +262,7 @@ impl CompilerSettings for ZkSolcSettings {
*optimizer == other.settings.optimizer &&
*metadata == other.settings.metadata &&
*libraries == other.settings.libraries &&
*detect_missing_libraries == other.settings.detect_missing_libraries &&
*zk_detect_missing_libraries == other.settings.zk_detect_missing_libraries &&
*enable_eravm_extensions == other.settings.enable_eravm_extensions &&
*llvm_options == other.settings.llvm_options &&
*force_evmla == other.settings.force_evmla &&
Expand Down

0 comments on commit 085b14a

Please sign in to comment.