diff --git a/halo2_frontend/src/plonk/keygen.rs b/halo2_frontend/src/plonk/keygen.rs index 8e9b829033..3b72f9b590 100644 --- a/halo2_frontend/src/plonk/keygen.rs +++ b/halo2_frontend/src/plonk/keygen.rs @@ -86,10 +86,6 @@ impl Assignment for Assembly { A: FnOnce() -> AR, AR: Into, { - if !self.usable_rows.contains(&row) { - return Err(Error::not_enough_rows_available(self.k)); - } - *self .fixed .get_mut(column.index()) @@ -120,10 +116,6 @@ impl Assignment for Assembly { from_row: usize, to: Value>, ) -> Result<(), Error> { - if !self.usable_rows.contains(&from_row) { - return Err(Error::not_enough_rows_available(self.k)); - } - let col = self .fixed .get_mut(column.index())