Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
fix: remove unused selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
johntaiko committed Jun 23, 2023
1 parent 002edb8 commit ef2a700
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions zkevm-circuits/src/pi_circuit2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ use halo2_proofs::{
use std::marker::PhantomData;

const MAX_DEGREE: usize = 9;
const MIN_DEGREE: usize = 8;
const RPI_CELL_IDX: usize = 0;
const RPI_RLC_ACC_CELL_IDX: usize = 1;
const BYTE_POW_BASE: u64 = 1 << 8;
Expand Down Expand Up @@ -176,9 +175,6 @@ pub struct PiCircuitConfig<F: Field> {
q_field_end: Selector,
is_field_rlc: Column<Fixed>,

q_start: Selector,
q_not_end: Selector,

byte_table: ByteTable,

pi: Column<Instance>, // keccak_hi, keccak_lo
Expand Down Expand Up @@ -225,8 +221,6 @@ impl<F: Field> SubCircuitConfig<F> for PiCircuitConfig<F> {
let q_field_start = meta.complex_selector();
let q_field_step = meta.complex_selector();
let q_field_end = meta.complex_selector();
let q_start = meta.complex_selector();
let q_not_end = meta.complex_selector();
let is_field_rlc = meta.fixed_column();

let pi = meta.instance_column();
Expand Down Expand Up @@ -326,8 +320,6 @@ impl<F: Field> SubCircuitConfig<F> for PiCircuitConfig<F> {
q_field_step,
q_field_end,

q_start,
q_not_end,
byte_table,
is_field_rlc,

Expand Down

0 comments on commit ef2a700

Please sign in to comment.