-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: validating private call data (#6316)
Please read [contributing guidelines](CONTRIBUTING.md) and remove this line.
- Loading branch information
Showing
15 changed files
with
1,118 additions
and
887 deletions.
There are no files selected for viewing
190 changes: 0 additions & 190 deletions
190
noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/common.nr
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
noir-projects/noir-protocol-circuits/crates/private-kernel-lib/src/lib.nr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
mod kernel_circuit_public_inputs_composer; | ||
mod private_call_data_validator; | ||
mod private_kernel_circuit_public_inputs_composer; | ||
mod private_kernel_init; | ||
mod private_kernel_inner; | ||
mod private_kernel_tail; | ||
mod private_kernel_tail_to_public; | ||
mod tests; | ||
|
||
use private_kernel_init::PrivateKernelInitCircuitPrivateInputs; | ||
use private_kernel_inner::PrivateKernelInnerCircuitPrivateInputs; | ||
use private_kernel_tail::PrivateKernelTailCircuitPrivateInputs; | ||
use private_kernel_tail_to_public::PrivateKernelTailToPublicCircuitPrivateInputs; | ||
|
||
// TODO: rename to be precise as to what its common to. | ||
mod common; |
Oops, something went wrong.