From 5d2237cea8d4ac1e829e6832c8d7979c5a4124c6 Mon Sep 17 00:00:00 2001 From: M Alghazwi Date: Thu, 9 Jan 2025 10:35:25 +0100 Subject: [PATCH] clean up params --- codex-plonky2-circuits/src/recursion/params.rs | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/codex-plonky2-circuits/src/recursion/params.rs b/codex-plonky2-circuits/src/recursion/params.rs index a60f992..235d7d7 100644 --- a/codex-plonky2-circuits/src/recursion/params.rs +++ b/codex-plonky2-circuits/src/recursion/params.rs @@ -1,3 +1,4 @@ +use std::marker::PhantomData; use plonky2::hash::poseidon::PoseidonHash; use plonky2::plonk::config::PoseidonGoldilocksConfig; use plonky2::plonk::proof::ProofWithPublicInputs; @@ -12,15 +13,3 @@ pub type C = PoseidonGoldilocksConfig; pub type H = PoseidonHash; pub type Plonky2Proof = ProofWithPublicInputs; - -pub struct RecursionTreeParams{ - pub tree_width: usize, -} - -impl RecursionTreeParams { - pub fn new(tree_width: usize) -> Self{ - Self{ - tree_width - } - } -}