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

Commit

Permalink
feat(acvm)!: switch to accepting public inputs as a map (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Feb 22, 2023
1 parent 897471d commit f57ba57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acvm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ pub trait ProofSystemCompiler {
fn verify_with_vk(
&self,
proof: &[u8],
public_inputs: Vec<FieldElement>,
public_inputs: BTreeMap<Witness, FieldElement>,
circuit: &Circuit,
verification_key: &[u8],
) -> bool;
Expand Down

0 comments on commit f57ba57

Please sign in to comment.