Skip to content

Commit

Permalink
fix: increase srs (#7754)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr authored Aug 9, 2024
1 parent 088aae5 commit 79613a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions barretenberg/cpp/src/barretenberg/bb/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ void client_ivc_prove_output_all_msgpack(const std::string& bytecodePath,
using TranslatorVK = TranslatorFlavor::VerificationKey;

init_bn254_crs(1 << 24);
init_grumpkin_crs(1 << 14);
init_grumpkin_crs(1 << 15);

auto gzippedBincodes = unpack_from_file<std::vector<std::string>>(bytecodePath);
auto witnessMaps = unpack_from_file<std::vector<std::string>>(witnessPath);
Expand Down Expand Up @@ -410,7 +410,7 @@ bool verify_client_ivc(const std::filesystem::path& proof_path,
const std::filesystem::path& translator_vk_path)
{
init_bn254_crs(1);
init_grumpkin_crs(1 << 14);
init_grumpkin_crs(1 << 15);

const auto proof = from_buffer<ClientIVC::Proof>(read_file(proof_path));
const auto accumulator = read_to_shared_ptr<ClientIVC::VerifierInstance>(accumulator_path);
Expand Down

0 comments on commit 79613a7

Please sign in to comment.