Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
fix: use latest nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Jun 17, 2024
1 parent 5100fee commit 4a16c21
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions leader/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@ async fn main() -> Result<()> {
if let Some((major_minor, _)) = pkg_ver.as_ref().and_then(|s| s.rsplit_once('.')) {
let circuits_version = format!("{}.x", major_minor);
// Set the environment variable for the evm_arithmetization package version
#[allow(unused_unsafe)]
unsafe {
env::set_var("EVM_ARITHMETIZATION_PKG_VER", circuits_version);
}
} else {
// Set to "NA" if version extraction fails
#[allow(unused_unsafe)]
unsafe {
env::set_var("EVM_ARITHMETIZATION_PKG_VER", "NA");
}
Expand Down

0 comments on commit 4a16c21

Please sign in to comment.