Skip to content

Commit

Permalink
chore: Update zksolc to 1.5.3 (#557)
Browse files Browse the repository at this point in the history
Update zksolc to 1.5.3

Co-authored-by: Jrigada <[email protected]>
  • Loading branch information
Jrigada and Jrigada authored Sep 3, 2024
1 parent a1155ab commit 65a9555
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/forge/tests/it/test_helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ impl ForgeTestProfile {
zk_config.zksync.startup = true;
zk_config.zksync.fallback_oz = true;
zk_config.zksync.optimizer_mode = '3';
zk_config.zksync.zksolc = Some(foundry_config::SolcReq::Version(Version::new(1, 5, 2)));
zk_config.zksync.zksolc = Some(foundry_config::SolcReq::Version(Version::new(1, 5, 3)));
zk_config.fuzz.no_zksync_reserved_addresses = true;

zk_config
Expand Down
2 changes: 1 addition & 1 deletion crates/zksync/compiler/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub fn config_create_project(
{
zksolc
} else if !config.offline {
let default_version = semver::Version::new(1, 5, 2);
let default_version = semver::Version::new(1, 5, 3);
let mut zksolc = ZkSolc::find_installed_version(&default_version)?;
if zksolc.is_none() {
ZkSolc::blocking_install(&default_version)?;
Expand Down

0 comments on commit 65a9555

Please sign in to comment.