zebra/zebra-consensus/examples/get-params-path.rs

13 lines
405 B
Rust

//! Print the Zcash parameter directory path to standard output.
// Modified from:
// https://github.com/zcash/librustzcash/blob/c48bb4def2e122289843ddb3cb2984c325c03ca0/zcash_proofs/examples/get-params-path.rs
#[allow(clippy::print_stdout)]
fn main() {
let path = zebra_consensus::groth16::Groth16Parameters::directory();
if let Some(path) = path.to_str() {
println!("{path}");
}
}