@@ -227,6 +227,7 @@ mod tests {
impl Circuit<pallas::Base> for ArithCircuit {
type Config = ArithCircuitConfig;
type FloorPlanner = floor_planner::V1;
+ type Params = ();
fn without_witnesses(&self) -> Self {
Self::default()
@@ -269,6 +269,7 @@ mod tests {
type Config =
(LessThanConfig<$window_size, $num_bits, $num_windows>, Column<Advice>);
Self { a: Value::unknown(), b: Value::unknown() }
@@ -239,6 +239,7 @@ mod tests {
(NativeRangeCheckConfig<$window_size, $num_bits, $num_windows>, Column<Advice>);
@@ -117,6 +117,7 @@ mod tests {
impl Circuit<pallas::Base> for SmallRangeCircuit {
type Config = (SmallRangeCheckConfig, Column<Advice>);
@@ -135,6 +135,7 @@ mod tests {
impl Circuit<Fp> for MyCircuit {
type Config = (ZeroCondConfig<Fp>, [Column<Advice>; 5], Column<Instance>);
type FloorPlanner = V1;