Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nbaztec committed Nov 1, 2023
1 parent f0c3098 commit d898f80
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions crates/zkforge/bin/cmd/zksolc_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ pub enum ZkSolcVersion {
V1311,
V1313,
V1314,
V1315,
V1316,
}

Expand Down Expand Up @@ -87,7 +86,6 @@ fn parse_version(version: &str) -> Result<ZkSolcVersion> {
"v1.3.11" => Ok(ZkSolcVersion::V1311),
"v1.3.13" => Ok(ZkSolcVersion::V1313),
"v1.3.14" => Ok(ZkSolcVersion::V1314),
"v1.3.15" => Ok(ZkSolcVersion::V1315),
"v1.3.16" => Ok(ZkSolcVersion::V1316),
_ => Err(Error::msg(
"ZkSolc compiler version not supported. Proper version format: 'v1.3.x'",
Expand All @@ -112,7 +110,6 @@ impl ZkSolcVersion {
ZkSolcVersion::V1311 => "v1.3.11",
ZkSolcVersion::V1313 => "v1.3.13",
ZkSolcVersion::V1314 => "v1.3.14",
ZkSolcVersion::V1315 => "v1.3.15",
ZkSolcVersion::V1316 => "v1.3.16",
}
}
Expand Down

0 comments on commit d898f80

Please sign in to comment.