Skip to content

Commit

Permalink
Std example test fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
suyash67 authored and dbanks12 committed Jan 28, 2023
1 parent c832239 commit 353a60e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/aztec/rollup/proofs/standard_example/c_bind.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ TEST(client_proofs, test_standard_example_c_bindings)
// Read g2x.
std::vector<uint8_t> g2x(128);
std::ifstream transcript;
int NUM_POINTS_IN_TRANSCRIPT = 5040000;
transcript.open("../srs_db/ignition/transcript00.dat", std::ifstream::binary);
int NUM_POINTS_IN_TRANSCRIPT = 5040001;
transcript.open("../srs_db/ignition/monomial/transcript00.dat", std::ifstream::binary);
transcript.seekg(28 + NUM_POINTS_IN_TRANSCRIPT * 64);
transcript.read((char*)g2x.data(), 128);
transcript.close();
Expand Down

0 comments on commit 353a60e

Please sign in to comment.