-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix:
zero-bin
is now able again to accesses evm_arithmetization
f…
…or circuit versions (#310) * `prove_rpc.sh` now outputs to a constant dir - Previously took into account the directory that the script was executed from. * `prove_stdio.sh` now works when used from any directory - Previously only worked when executed from the `tools` directory. * Now always uses `tools/circuits` in workspace - Previously, we always looked for the `circuits` directory directly inside our current working directory. Now if we are running within the workspace, we always will look in `zk_evm/zero_bin/tools` instead. - Also note that `zero_bin/.cargo/config.toml` is only read when we are interacting with `cargo` directly (eg. the scripts in `tools/` do not invoke it). * Fixed `zero_bin` being unable to find its `Cargo.lock` - Caused by `zero_bin` being moved as a sub-crate of `zk_evm`.
- Loading branch information
Showing
8 changed files
with
36 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
pub fn print_version( | ||
evm_arithmetization_package_version: &str, | ||
evm_arithmetization_kernel_version: &str, | ||
rustc_commit_hash: &str, | ||
rustc_timestamp: &str, | ||
) { | ||
println!( | ||
"evm_arithmetization Package Version: {}\nBuild Commit Hash: {}\nBuild Timestamp: {}", | ||
evm_arithmetization_package_version, rustc_commit_hash, rustc_timestamp | ||
"evm_arithmetization Kernel Version: {}\nBuild Commit Hash: {}\nBuild Timestamp: {}", | ||
evm_arithmetization_kernel_version, rustc_commit_hash, rustc_timestamp | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters