Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
**/target
.DS_Store
node_modules
dest
Expand Down
2 changes: 1 addition & 1 deletion aztec_backend_wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub fn serialise_acir_to_barrtenberg_circuit(acir: JsValue) -> Vec<u8> {
pub fn packed_witness_to_witness(acir: JsValue, witness_arr: Vec<u8>) -> Vec<u8> {
console_error_panic_hook::set_once();

use crate::barretenberg_structures::Assignments;
use common::barretenberg_structures::Assignments;
let circuit: Circuit = acir.into_serde().unwrap();
let witness_values = Witness::from_bytes(&witness_arr);
let mut sorted_witness = Assignments::new();
Expand Down
Loading