mirror of
https://github.com/logos-storage/plonky2.git
synced 2026-01-11 10:13:09 +00:00
Before it was storing leaf data and Merkle roots, but nothing in between, since it wasn't yet interacting with intermediate layers (but it will once we hook up the FRI code).
10 lines
242 B
Rust
10 lines
242 B
Rust
use crate::circuit_data::{CommonCircuitData, VerifierOnlyCircuitData};
|
|
use crate::field::field::Field;
|
|
|
|
pub(crate) fn verify<F: Field>(
|
|
verifier_data: &VerifierOnlyCircuitData<F>,
|
|
common_data: &CommonCircuitData<F>,
|
|
) {
|
|
todo!()
|
|
}
|