Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,15 @@ bool ChonkBatchVerifier::batch_check(const std::vector<ReduceResult>& results, c
}

auto ipa_vk = VerifierCommitmentKey<curve::Grumpkin>{ ECCVMFlavor::ECCVM_FIXED_SIZE };
return IPA<curve::Grumpkin>::batch_reduce_verify(ipa_vk, claims, transcripts);
try {
return IPA<curve::Grumpkin>::batch_reduce_verify(ipa_vk, claims, transcripts);
} catch (const std::exception& e) {
info("ChonkBatchVerifier: batch_check threw: ", e.what());
return false;
} catch (...) {
info("ChonkBatchVerifier: batch_check threw unknown exception");
return false;
}
}

void ChonkBatchVerifier::bisect(std::vector<ReduceResult>& results,
Expand Down
Loading