Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
maramihali committed Jul 22, 2024
1 parent 3488ac4 commit fe9b300
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Empty file modified barretenberg/acir_tests/flows/prove_tube.sh
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -206,15 +206,9 @@ template <typename RecursiveFlavor> class RecursiveVerifierTest : public testing
// Check 2: Ensure that the underlying native and recursive verification algorithms agree by ensuring
// the manifests produced by each agree.
auto recursive_manifest = verifier.transcript->get_manifest();
recursive_manifest.print();
auto native_manifest = native_verifier.transcript->get_manifest();
native_manifest.print();
for (size_t i = 0; i < recursive_manifest.size(); ++i) {

EXPECT_EQ(recursive_manifest[i], native_manifest[i]);
if (recursive_manifest[i] != native_manifest[i]) {
info(i);
}
}

// Check 3: Construct and verify a proof of the recursive verifier circuit
Expand Down

0 comments on commit fe9b300

Please sign in to comment.