diff --git a/proof-input/src/params.rs b/proof-input/src/params.rs index d263761..97e3e39 100755 --- a/proof-input/src/params.rs +++ b/proof-input/src/params.rs @@ -1,21 +1,8 @@ // params for generating input for proof circuit - -use plonky2::hash::poseidon::PoseidonHash; -use plonky2::plonk::config::PoseidonGoldilocksConfig; -use plonky2::plonk::config::GenericConfig; use std::env; use anyhow::{Result, Context}; use codex_plonky2_circuits::circuits::params::CircuitParams; -use plonky2_poseidon2::config::Poseidon2GoldilocksConfig; -use plonky2_poseidon2::poseidon2_hash::poseidon2::Poseidon2Hash; -// test types -pub const D: usize = 2; -pub type C = PoseidonGoldilocksConfig; -pub type C2 = Poseidon2GoldilocksConfig; -pub type F = >::F; // this is the goldilocks field -pub type HF = PoseidonHash; -pub type HF2 = Poseidon2Hash; // hardcoded default params for generating proof input const DEFAULT_MAX_DEPTH: usize = 32; // depth of big tree (slot tree depth, includes block tree depth)