// global params for the circuits // only change params here use plonky2::hash::poseidon::PoseidonHash; // constants and types used throughout the circuit pub const N_FIELD_ELEMS_PER_CELL: usize = 4; pub const BOT_DEPTH: usize = 5; // block depth - depth of the block merkle tree pub const MAX_DEPTH: usize = 16; // depth of big tree (slot tree depth + block tree depth) pub const N_CELLS_IN_BLOCKS: usize = 1< and causing a lot of headache // will look into this later. pub type HF = PoseidonHash;