| 5 | use crate::{gadgets::gadget::GadgetConfig, layers::layer::CellRc}; |
| 6 | |
| 7 | pub trait Commit<F: PrimeField> { |
| 8 | fn commit( |
| 9 | &self, |
| 10 | layouter: impl Layouter<F>, |
| 11 | gadget_config: Rc<GadgetConfig>, |
| 12 | constants: &HashMap<i64, CellRc<F>>, |
| 13 | values: &Vec<CellRc<F>>, |
| 14 | blinding: CellRc<F>, |
| 15 | ) -> Result<Vec<CellRc<F>>, Error>; |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected